Skip to content

2017-04-12

Compare
Choose a tag to compare
@colin-kiegel colin-kiegel released this 12 Apr 08:40
· 248 commits to master since this release

Added

  • fallible setters, e.g. #[builder(try_setter)]. These setters are exposed
    alongside the normal field setters and allow callers to pass in values which
    have fallible conversions to the needed type through TryInto. This
    attribute can only be used on nightly when #![feature(try_from)] is
    declared in the consuming crate's root; this will change when Rust issue
    #33417 is resolved.