Struct Error
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§
§impl Error for Error
impl Error for Error
§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()
§impl From<Infallible> for Error
impl From<Infallible> for Error
§fn from(err: Infallible) -> Error
fn from(err: Infallible) -> Error
Converts to this type from the input type.
§impl From<InvalidHeaderName> for Error
impl From<InvalidHeaderName> for Error
§fn from(err: InvalidHeaderName) -> Error
fn from(err: InvalidHeaderName) -> Error
Converts to this type from the input type.
§impl From<InvalidHeaderValue> for Error
impl From<InvalidHeaderValue> for Error
§fn from(err: InvalidHeaderValue) -> Error
fn from(err: InvalidHeaderValue) -> Error
Converts to this type from the input type.
§impl From<InvalidMethod> for Error
impl From<InvalidMethod> for Error
§fn from(err: InvalidMethod) -> Error
fn from(err: InvalidMethod) -> Error
Converts to this type from the input type.
§impl From<InvalidStatusCode> for Error
impl From<InvalidStatusCode> for Error
§fn from(err: InvalidStatusCode) -> Error
fn from(err: InvalidStatusCode) -> Error
Converts to this type from the input type.
§impl From<InvalidUri> for Error
impl From<InvalidUri> for Error
§fn from(err: InvalidUri) -> Error
fn from(err: InvalidUri) -> Error
Converts to this type from the input type.
§impl From<InvalidUriParts> for Error
impl From<InvalidUriParts> for Error
§fn from(err: InvalidUriParts) -> Error
fn from(err: InvalidUriParts) -> Error
Converts to this type from the input type.
§impl From<MaxSizeReached> for Error
impl From<MaxSizeReached> for Error
§fn from(err: MaxSizeReached) -> Error
fn from(err: MaxSizeReached) -> Error
Converts to this type from the input type.
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§
§impl<T> AsErrorSource for Twhere
T: Error + 'static,
impl<T> AsErrorSource for Twhere
T: Error + 'static,
§fn as_error_source(&self) -> &(dyn Error + 'static)
fn as_error_source(&self) -> &(dyn Error + 'static)
For maximum effectiveness, this needs to be called as a method
to benefit from Rust’s automatic dereferencing of method
receivers.
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
§impl<T> CompatExt for T
impl<T> CompatExt for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
§impl<E> InstrumentError for Ewhere
TracedError<E>: From<E>,
impl<E> InstrumentError for Ewhere
TracedError<E>: From<E>,
§type Instrumented = TracedError<E>
type Instrumented = TracedError<E>
The type of the wrapped error after instrumentation
§fn in_current_span(self) -> <E as InstrumentError>::Instrumented
fn in_current_span(self) -> <E as InstrumentError>::Instrumented
Instrument an Error by bundling it with a SpanTrace Read more
§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.