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
/// The code of your JSON response.
pub trait JSONResponseCode {
    /// Assume the code **0** means **OK**. You can define other codes by yourself.
    /// This method will be called for one time when the response is being triggered. You can do something (perhaps keep a log?) at the moment.
    fn get_code(&self) -> i32;
}

impl JSONResponseCode for i8 {
    #[inline]
    fn get_code(&self) -> i32 {
        *self as i32
    }
}

impl JSONResponseCode for i16 {
    #[inline]
    fn get_code(&self) -> i32 {
        *self as i32
    }
}

impl JSONResponseCode for i32 {
    #[inline]
    fn get_code(&self) -> i32 {
        *self
    }
}

impl JSONResponseCode for u8 {
    #[inline]
    fn get_code(&self) -> i32 {
        *self as i32
    }
}

impl JSONResponseCode for u16 {
    #[inline]
    fn get_code(&self) -> i32 {
        *self as i32
    }
}

impl JSONResponseCode for u32 {
    #[inline]
    fn get_code(&self) -> i32 {
        *self as i32
    }
}