File: example.rs

package info (click to toggle)
rust-smart-default 0.7.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 128 kB
  • sloc: makefile: 4
file content (33 lines) | stat: -rw-r--r-- 643 bytes parent folder | download | duplicates (28)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
use smart_default::SmartDefault;

#[derive(PartialEq, SmartDefault, Debug)]
#[allow(dead_code)]
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),
}

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