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
use thiserror::Error;

pub type Result<T> = std::result::Result<T, Error>;

#[derive(Error, Debug)]
pub enum Error {
    #[error(transparent)]
    HTTPErr(#[from] ureq::Error),
    #[error(transparent)]
    IOErr(#[from] std::io::Error),
}

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()
    }
}