#[derive(Debug)]
pub enum Error {
Http(reqwest::Error),
Url(url::ParseError),
InvalidHeader(reqwest::header::InvalidHeaderValue),
NotFound(NotFound),
PermissionDenied(PermissionDenied),
}
impl std::fmt::Display for Error {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
Error::Http(e) => e.fmt(f),
Error::Url(e) => e.fmt(f),
Error::InvalidHeader(e) => e.fmt(f),
Error::NotFound(e) => e.fmt(f),
Error::PermissionDenied(e) => e.fmt(f),
}
}
}
impl std::error::Error for Error {
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
match self {
Error::Http(e) => Some(e),
Error::Url(e) => Some(e),
Error::InvalidHeader(e) => Some(e),
Error::NotFound(_) => None,
Error::PermissionDenied(_) => None,
}
}
}
impl From<reqwest::Error> for Error {
fn from(e: reqwest::Error) -> Self {
Error::Http(e)
}
}
impl From<url::ParseError> for Error {
fn from(e: url::ParseError) -> Self {
Error::Url(e)
}
}
impl From<reqwest::header::InvalidHeaderValue> for Error {
fn from(e: reqwest::header::InvalidHeaderValue) -> Self {
Error::InvalidHeader(e)
}
}
#[derive(Debug)]
pub struct NotFound {
pub(crate) url: String,
}
impl std::fmt::Display for NotFound {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "Resouce at url '{}' could not be found", self.url)
}
}
#[derive(Debug)]
pub struct PermissionDenied {
pub(crate) reason: String,
}
impl std::fmt::Display for PermissionDenied {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "Permission denied: {}", self.reason)
}
}