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
pub trait JSONResponseCode {
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
}
}