Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
derive_more
derive_more
adds `#[derive(x)]
macros for more traits.
derive_builder
derive_builder
provides Rust macro to automatically implement the builder pattern for arbitrary structs.
A simple #[derive(Builder)]
will generate a FooBuilder …