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

Compile-time type-checked builder derive

Results 34 rust-typed-builder issues
Sort by recently updated
recently updated
newest added

I just started using this crate today and love it. The only thing I wish it had is a way to define the setter function for specific fields. For instance...

In #22 we added traits for extending the builder type, but using several of them together (a common usecase for extending the builder type) can become very verbose: ```rust #[derive(TypedStruct)]...

With #21 we want to convert all the builder type's generic parameters to a single tuple of types. Here we want to add traits for it. Say we have: ```rust...

Thanks for your work on this crate — it's been super useful for me in several projects. A project called `watt` has been released recently (https://github.com/dtolnay/watt), which claims to decrease...