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