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
81
82
83
84
85
86
87
88
use chrono::{DateTime, NaiveDate, TimeZone, Utc};
use uuid::Uuid;

pub trait Example {
    fn example() -> Self;
}

impl Example for () {
    fn example() -> Self {}
}

impl<T: Example> Example for Option<T> {
    fn example() -> Self {
        Some(T::example())
    }
}

impl<T: Example> Example for Vec<T> {
    fn example() -> Self {
        vec![T::example()]
    }
}

impl Example for Uuid {
    fn example() -> Self {
        Uuid::parse_str("307fa56f-9853-4f5c-afb9-a6736c232f32").unwrap()
    }
}

impl Example for DateTime<Utc> {
    fn example() -> Self {
        Utc.timestamp_opt(1640988000, 0).unwrap()
    }
}

impl Example for NaiveDate {
    fn example() -> Self {
        NaiveDate::from_ymd_opt(2022, 1, 1).unwrap()
    }
}

impl Example for i32 {
    fn example() -> Self {
        1234
    }
}

impl Example for u32 {
    fn example() -> Self {
        1234
    }
}

impl Example for u64 {
    fn example() -> Self {
        1234
    }
}

impl Example for i64 {
    fn example() -> Self {
        1234
    }
}

impl Example for f32 {
    fn example() -> Self {
        12.34
    }
}

impl Example for f64 {
    fn example() -> Self {
        12.34
    }
}

impl Example for String {
    fn example() -> Self {
        "Sample string".to_string()
    }
}

impl Example for bool {
    fn example() -> Self {
        false
    }
}