smart-default 0.1.0

Rust custom-derive macro for Default with more control on the fields
Documentation

Build Status

Rust SmartDefault

Custom derive for automatically implementing the Default trait with customized default values:

#[derive(SmartDefault)]
enum Foo {
    Bar,
    #[default]
    Baz {
        #[default = "12"]
        a: i32,
        b: i32,
        #[default = r#""hello""#]
        c: &'static str,
    },
    Qux(i32),
}

assert!(Foo::default() == Foo::Baz { a: 12, b: 0, c: "hello" });