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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/// Defines several structs each using the same derive procedures.
/// ## Example
/// ```
/// #[macro_use] extern crate derive_for;
/// derive_for!(
/// ( Clone, Debug, PartialEq, Eq),
/// pub struct Foo{a: i32, name: String};
/// pub struct Bar(u32, u32);
/// );
/// ```
#[macro_export]
macro_rules! derive_for {
    // Derive tuple
    (($b:ident $(,$a:ident)*), $(#[$attr:meta])* $vis:vis struct $name:ident($($fields:tt)*); $($rest:tt)*) => {
        #[derive($($a,)* $b)]
        $(#[$attr])*
        $vis struct $name($($fields)*);
        derive_for!( ($b, $($a,)*), $($rest)*);
    };
    // Derive tuple with trailing derive comma
    (($b:ident $(,$a:ident)*,), $(#[$attr:meta])* $vis:vis struct $name:ident($($fields:tt)*); $($rest:tt)*) => {
        #[derive($($a,)* $b)]
        $(#[$attr])*
        $vis struct $name($($fields)*);
        derive_for!( ($b, $($a,)*), $($rest)*);
    };
    // Derive struct
    (($b:ident $(,$a:ident)*), $(#[$attr:meta])* $vis:vis struct $name:ident{ $($fields:tt)* }; $($rest:tt)*) => {
        #[derive($($a,)* $b)]
        $(#[$attr])*
        $vis struct $name{ $($fields)* }
        derive_for!( ($b, $($a,)*), $($rest)*);
    };
    // Derive struct with trailing derive comma
    (($b:ident $(,$a:ident)*,), $(#[$attr:meta])* $vis:vis struct $name:ident{ $($fields:tt)* }; $($rest:tt)*) => {
        #[derive($($a,)* $b)]
        $(#[$attr])*
        $vis struct $name{ $($fields)* }
        derive_for!( ($b, $($a,)*), $($rest)*);
    };
    (($($_:ident,)*),) => {};
}

#[cfg(test)]
#[macro_use]
mod tests {
    use crate::derive_for;

    derive_for!(
    ( Clone, Debug, PartialEq, Eq),
    pub struct Foo{a: i32, name: String};
    pub struct Bar(u32, u32);
        );

    #[test]
    pub fn test() {
        let foo = Foo {
            a: 5,
            name: "Hello".into(),
        };
        let bar = Bar(3, 6);

        // Debug
        println!("{:?}, {:?}", foo, bar);

        // Eq
        assert_eq!(
            foo,
            Foo {
                a: 5,
                name: "Hello".into()
            }
        );
        assert_eq!(bar, Bar(3, 6));

        // Clone
        assert_eq!(foo, foo.clone());
        assert_eq!(bar, bar.clone());
    }
}