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
use http::Error as HttpError;
use hyper::Error as HyperError;
#[cfg(feature = "axum")]
use axum::response::{IntoResponse, Response};
#[cfg(feature = "axum")]
use http::StatusCode;
use std::error::Error as StdError;
use std::fmt;
#[derive(Debug)]
pub enum Error {
InvalidUri(HttpError),
RequestFailed(HyperError),
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Self::InvalidUri(e) => {
write!(f, "Invalid uri: {e}")
}
Self::RequestFailed(e) => {
write!(f, "Request failed: {e}")
}
}
}
}
impl StdError for Error {}
#[cfg(feature = "axum")]
#[cfg_attr(docsrs, doc(cfg(feature = "axum")))]
impl IntoResponse for Error {
fn into_response(self) -> Response {
log::error!("{self}");
StatusCode::INTERNAL_SERVER_ERROR.into_response()
}
}