Files
comptime-builder/examples/derive.rs
T
2023-08-11 11:42:42 +05:30

13 lines
184 B
Rust

use comptime_builder::Builder;
#[derive(Builder)]
pub struct MyStruct<T1, T2> {
pub my_field: T1,
pub my_other_field: T2,
pub our_field: String,
}
pub fn main() {
}