1 2 3 4 5 6 7 8 9
use bauer::Builder; #[derive(Builder)] pub struct Foo { #[builder(repeat = u8)] field_a: [u32; 3], } fn main() {}