rust-typed-builder icon indicating copy to clipboard operation
rust-typed-builder copied to clipboard

Allow specifying custom derives on all generated builder variants

Open Niedzwiedzw opened this issue 1 year ago • 0 comments

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

Niedzwiedzw avatar May 24 '24 15:05 Niedzwiedzw