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§
Source§impl Error for Error
impl Error for Error
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<Error> for FreezeRequestError
impl From<Error> for FreezeRequestError
Source§fn from(original: HttpError) -> FreezeRequestError
fn from(original: HttpError) -> FreezeRequestError
Converts to this type from the input type.
Source§impl From<Error> for InvalidUrl
impl From<Error> for InvalidUrl
Source§fn from(original: Error) -> InvalidUrl
fn from(original: Error) -> InvalidUrl
Converts to this type from the input type.
Source§impl From<Error> for SendRequestError
impl From<Error> for SendRequestError
Source§fn from(original: HttpError) -> SendRequestError
fn from(original: HttpError) -> SendRequestError
Converts to this type from the input type.
Source§impl From<Infallible> for Error
impl From<Infallible> for Error
Source§fn from(err: Infallible) -> Error
fn from(err: Infallible) -> Error
Converts to this type from the input type.
Source§impl From<InvalidHeaderName> for Error
impl From<InvalidHeaderName> for Error
Source§fn from(err: InvalidHeaderName) -> Error
fn from(err: InvalidHeaderName) -> Error
Converts to this type from the input type.
Source§impl From<InvalidHeaderValue> for Error
impl From<InvalidHeaderValue> for Error
Source§fn from(err: InvalidHeaderValue) -> Error
fn from(err: InvalidHeaderValue) -> Error
Converts to this type from the input type.
Source§impl From<InvalidMethod> for Error
impl From<InvalidMethod> for Error
Source§fn from(err: InvalidMethod) -> Error
fn from(err: InvalidMethod) -> Error
Converts to this type from the input type.
Source§impl From<InvalidStatusCode> for Error
impl From<InvalidStatusCode> for Error
Source§fn from(err: InvalidStatusCode) -> Error
fn from(err: InvalidStatusCode) -> Error
Converts to this type from the input type.
Source§impl From<InvalidUri> for Error
impl From<InvalidUri> for Error
Source§fn from(err: InvalidUri) -> Error
fn from(err: InvalidUri) -> Error
Converts to this type from the input type.
Source§impl From<InvalidUriParts> for Error
impl From<InvalidUriParts> for Error
Source§fn from(err: InvalidUriParts) -> Error
fn from(err: InvalidUriParts) -> Error
Converts to this type from the input type.
Source§impl From<MaxSizeReached> for Error
impl From<MaxSizeReached> for Error
Source§fn from(err: MaxSizeReached) -> Error
fn from(err: MaxSizeReached) -> Error
Converts to this type from the input type.
Source§impl ResponseError for Error
Return InternalServerError
for HttpError
,
Response generation can return HttpError
, so it is internal error
impl ResponseError for Error
Return InternalServerError
for HttpError
,
Response generation can return HttpError
, so it is internal error
Source§fn status_code(&self) -> StatusCode
fn status_code(&self) -> StatusCode
Response’s status code Read more
Auto Trait Implementations§
impl Freeze for Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<E> Fail for E
impl<E> Fail for E
Source§fn cause(&self) -> Option<&(dyn Fail + 'static)>
fn cause(&self) -> Option<&(dyn Fail + 'static)>
Returns a reference to the underlying cause of this failure, if it
is an error that wraps other errors. Read more
Source§fn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
Returns a reference to the
Backtrace
carried by this failure, if it
carries one. Read moreSource§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more