Files
comptime-builder/examples/derive.rs
T
Uttarayan Mondal 2473abf2f7 [partial]
2023-08-19 04:09:34 +05:30

13 lines
197 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() {
// echo hello
}