rust-typed-builder
rust-typed-builder copied to clipboard
Allow specifying custom derives on all generated builder variants
when generating a builder for a struct like
struct Foo {
foo: i32,
bar: i32
}
I'd like to be able to add my own custom derives to all the intermediate types, so that I can store, serialize and clone the
FooBuilder<(), i32> intermediate builder step