pub struct Error(_);
Expand description
A type that contains all the errors that can possibly occur while accessing an HTTP server.
Implementations
Trait Implementations
sourceimpl Error for Error
impl Error for Error
sourcefn cause(&self) -> Option<&dyn StdError>
fn cause(&self) -> Option<&dyn StdError>
👎Deprecated since 1.33.0:
replaced by Error::source, which can support downcasting
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
sourceimpl From<Infallible> for Error
impl From<Infallible> for Error
sourcefn from(_err: Infallible) -> Error
fn from(_err: Infallible) -> Error
Converts to this type from the input type.
sourceimpl From<InvalidDNSNameError> for Error
impl From<InvalidDNSNameError> for Error
sourcefn from(err: InvalidDNSNameError) -> Error
fn from(err: InvalidDNSNameError) -> Error
Converts to this type from the input type.
sourceimpl From<InvalidHeaderValue> for Error
impl From<InvalidHeaderValue> for Error
sourcefn from(err: InvalidHeaderValue) -> Error
fn from(err: InvalidHeaderValue) -> Error
Converts to this type from the input type.
sourceimpl From<InvalidResponseKind> for Error
impl From<InvalidResponseKind> for Error
sourcefn from(kind: InvalidResponseKind) -> Error
fn from(kind: InvalidResponseKind) -> Error
Converts to this type from the input type.
Auto Trait Implementations
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more