pub struct Error { /* private fields */ }
Expand description
A generic “error” for HTTP connections
This error type is less specific than the error returned from other
functions in this crate, but all other errors can be converted to this
error. Consumers of this crate can typically consume and work with this form
of error for conversions with the ?
operator.
Implementations
Trait Implementations
sourceimpl Error for Error
impl Error for Error
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
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
🔬 This is a nightly-only experimental API. (
backtrace
)Returns a stack backtrace, if available, of where this error occurred. 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
Performs the conversion.
sourceimpl From<InvalidHeaderName> for Error
impl From<InvalidHeaderName> for Error
sourcefn from(err: InvalidHeaderName) -> Error
fn from(err: InvalidHeaderName) -> Error
Performs the conversion.
sourceimpl From<InvalidHeaderValue> for Error
impl From<InvalidHeaderValue> for Error
sourcefn from(err: InvalidHeaderValue) -> Error
fn from(err: InvalidHeaderValue) -> Error
Performs the conversion.
sourceimpl From<InvalidMethod> for Error
impl From<InvalidMethod> for Error
sourcefn from(err: InvalidMethod) -> Error
fn from(err: InvalidMethod) -> Error
Performs the conversion.
sourceimpl From<InvalidStatusCode> for Error
impl From<InvalidStatusCode> for Error
sourcefn from(err: InvalidStatusCode) -> Error
fn from(err: InvalidStatusCode) -> Error
Performs the conversion.
sourceimpl From<InvalidUri> for Error
impl From<InvalidUri> for Error
sourcefn from(err: InvalidUri) -> Error
fn from(err: InvalidUri) -> Error
Performs the conversion.
sourceimpl From<InvalidUriParts> for Error
impl From<InvalidUriParts> for Error
sourcefn from(err: InvalidUriParts) -> Error
fn from(err: InvalidUriParts) -> Error
Performs the conversion.
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 · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more