firefly_iii_rust/
error.rs

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
pub type Result<T> = std::result::Result<T, Error>;

#[derive(Debug)]
pub enum Error {
    HTTPErr{
        status: u32,
        response_msg: String,
    },
    IOErr,
}

impl From<ureq::Error> for Error {
    fn from(err: ureq::Error) -> Self {
        err.into()
    }
}

impl From<&ureq::Error> for Error {
    fn from(err: &ureq::Error) -> Self {
        err.into()
    }
}

impl From<String> for Error {
    fn from(err: String) -> Self {
        err.into()
    }
}

impl From<u16> for Error {
    fn from(err: u16) -> Self {
        err.into()
    }
}