2 releases
0.1.1 | May 6, 2024 |
---|---|
0.1.0 | Jul 3, 2023 |
#139 in #macros
112 downloads per month
Used in 2 crates
(via syact)
9KB
109 lines
syact_macros
A helper crate for proc-macros used by the syact.
SyncCompGroup
Includes a derive proc-macro to implement SyncCompGroup
for a struct consisting of only fields that include SyncComp
.
use syact::prelude::*;
// Simple group of components that consists of multiple fields
#[derive(SyncCompGroup)] // Automatically implements SyncCompGroup
#[derive(StepperCompGroup)] // Automatically implements StepperCompGroup
struct TestGroup {
pub base : Stepper,
pub arm : Stepper
}
fn main() {
let test = TestGroup {
base: Stepper::new_gen(StepperConst::GEN),
arm: Stepper::new_gen(StepperConst::GEN)
};
let test_ref : &dyn SyncCompGroup<2> = &test;
// Usually requires multiple curve builders
let path_builder : PathBuilder<2> = test.create_path_builder();
}
Dependencies
~215–650KB
~16K SLoC