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
/// Macro for simplifying custom Key type definition
#[macro_export]
macro_rules! key {
    ($type:item) => {
        #[derive(Clone, Serialize, Deserialize, PartialEq, Eq, Hash)]
        $type
    };
}

/// Macro for simplifying custom Value type definition
#[macro_export]
macro_rules! value {
    ($type:item) => {
        #[derive(Clone, Serialize, Deserialize, Debug)]
        $type
    };
}

#[test]
fn test_macro_key() {
    key!(
        enum MyKey {
            String(String),
            Int(i32),
        }
    );
}

#[test]
fn test_macro_value() {
    value!(
        enum MyValue {
            String(String),
            Int(i32),
        }
    );
}