Struct reqwest::Error [] [src]

pub struct Error { /* fields omitted */ }

The Errors that may occur when processing a Request.

Methods

impl Error
[src]

Returns a possible URL related to this error.

Returns a reference to the internal error, if available.

The 'static bounds allows using downcast_ref to check the details of the error.

Returns true if the error is related to HTTP.

Returns true if the error is serialization related.

Returns true if the error is from a RedirectPolicy.

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl Display for Error
[src]

Formats the value using the given formatter. Read more

impl StdError for Error
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more

impl From<InternalFrom<Error>> for Error
[src]

Performs the conversion.

impl<T> From<InternalFrom<T>> for Error where
    T: Into<Kind>, 
[src]

Performs the conversion.