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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
use anyhow::Result;

pub trait Parser {
    fn custom_parse(input: &str) -> Result<Self>
    where
        Self: Sized;
}

impl Parser for String {
    fn custom_parse(input: &str) -> Result<Self> {
        Ok(input.to_string())
    }
}

impl Parser for isize {
    fn custom_parse(input: &str) -> Result<Self> {
        Ok(input.parse()?)
    }
}

impl Parser for i128 {
    fn custom_parse(input: &str) -> Result<Self> {
        Ok(input.parse()?)
    }
}

impl Parser for i64 {
    fn custom_parse(input: &str) -> Result<Self> {
        Ok(input.parse()?)
    }
}

impl Parser for i32 {
    fn custom_parse(input: &str) -> Result<Self> {
        Ok(input.parse()?)
    }
}

impl Parser for i16 {
    fn custom_parse(input: &str) -> Result<Self> {
        Ok(input.parse()?)
    }
}

impl Parser for i8 {
    fn custom_parse(input: &str) -> Result<Self> {
        Ok(input.parse()?)
    }
}

impl Parser for usize {
    fn custom_parse(input: &str) -> Result<Self> {
        Ok(input.parse()?)
    }
}

impl Parser for u128 {
    fn custom_parse(input: &str) -> Result<Self> {
        Ok(input.parse()?)
    }
}

impl Parser for u64 {
    fn custom_parse(input: &str) -> Result<Self> {
        Ok(input.parse()?)
    }
}

impl Parser for u32 {
    fn custom_parse(input: &str) -> Result<Self> {
        Ok(input.parse()?)
    }
}

impl Parser for u16 {
    fn custom_parse(input: &str) -> Result<Self> {
        Ok(input.parse()?)
    }
}

impl Parser for u8 {
    fn custom_parse(input: &str) -> Result<Self> {
        Ok(input.parse()?)
    }
}

impl Parser for f64 {
    fn custom_parse(input: &str) -> Result<Self> {
        Ok(input.parse()?)
    }
}

impl Parser for f32 {
    fn custom_parse(input: &str) -> Result<Self> {
        Ok(input.parse()?)
    }
}

impl Parser for bool {
    fn custom_parse(input: &str) -> Result<Self> {
        match input {
            "1" => Ok(true),
            "0" => Ok(false),
            _ => Err(anyhow::anyhow!("Invalid boolean")),
        }
    }
}

impl Parser for char {
    fn custom_parse(input: &str) -> Result<Self> {
        Ok(input.parse()?)
    }
}