You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
default values, e.g. #[builder(default="42")] or just #[builder(default)]
Changed
deprecated syntax #[builder(setter_prefix="with")],
please use #[builder(setter(prefix="with"))] instead
setter conversions are now off by default, you can opt-into via #[builder(setter(into))]
logging is behind a feature flag. To activate it, please add features = ["logging"] to the dependency in Cargo.toml. Then you can use
it like: RUST_LOG=derive_builder=trace cargo test.