mod other { use typesafe_builders::prelude::*; #[derive(Builder)] pub struct Struct { x: [u8; LEN], } //#[derive(Builder)] //pub struct Struct2 { // x: [u8; LEN], //} TODO } fn main() { other::Struct::<1>::builder().x([1]).build(); }