10 releases (6 breaking)

0.7.1 Apr 24, 2023
0.6.0 Dec 13, 2019
0.5.2 Apr 13, 2019
0.5.1 Mar 1, 2019
0.2.0 Aug 21, 2017

#38 in Procedural macros

Download history 98632/week @ 2024-01-23 110622/week @ 2024-01-30 92642/week @ 2024-02-06 105697/week @ 2024-02-13 123117/week @ 2024-02-20 128877/week @ 2024-02-27 129641/week @ 2024-03-05 125654/week @ 2024-03-12 128033/week @ 2024-03-19 126212/week @ 2024-03-26 135215/week @ 2024-04-02 122988/week @ 2024-04-09 141991/week @ 2024-04-16 146354/week @ 2024-04-23 135485/week @ 2024-04-30 112957/week @ 2024-05-07

559,240 downloads per month
Used in 304 crates (105 directly)

MIT license

15KB
251 lines

Build Status Latest Version Rust Documentation

Rust SmartDefault

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

use smart_default::SmartDefault;

#[derive(SmartDefault)]
enum Foo {
    Bar,
    #[default]
    Baz {
        #[default = 12]
        a: i32,
        b: i32,
        #[default(Some(Default::default()))]
        c: Option<i32>,
        #[default(_code = "vec![1, 2, 3]")]
        d: Vec<u32>,
        #[default = "four"]
        e: String,
    },
    Qux(i32),
}

assert!(Foo::default() == Foo::Baz {
    a: 12,
    b: 0,
    c: Some(0),
    d: vec![1, 2, 3],
    e: "four".to_owned(),
});

Requires Rust 1.30+ (for non-string values in attributes)

Dependencies

~0.4–0.8MB
~20K SLoC