#[derive(Debug, thiserror::Error)] pub enum Error { #[error(transparent)] Http(#[from] reqwest::Error), #[error("Unsupported scheme")] UnsupportedScheme, #[error("Failed to construct a valid Authorization header: {0}")] InvalidAuthorization(#[from] reqwest::header::InvalidHeaderValue), }