blob: 8be08741a3f8e47718dbc4738caf8d5c5becc1cc (
plain) (
blame)
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
|
use std::fmt;
/// The Errors that may occur around Clients.
#[derive(Debug)]
pub enum Error {
ParseUrl(url::ParseError),
Reqwest(reqwest::Error),
}
impl std::error::Error for Error {}
impl fmt::Display for Error {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Error::ParseUrl(err) => write!(fmt, "can't parse Url: {}", err),
Error::Reqwest(err) => write!(fmt, "reqwest error: {}", err),
}
}
}
impl From<url::ParseError> for Error {
fn from(err: url::ParseError) -> Self {
Self::ParseUrl(err)
}
}
impl From<reqwest::Error> for Error {
fn from(err: reqwest::Error) -> Self {
Self::Reqwest(err)
}
}
/// A `Result` alias where the `Err` case is `inwx::Error`.
pub type Result<T> = std::result::Result<T, Error>;
|