pub type AsyncHttpClientError = Error<Error>;
Expand description

Error type returned by failed reqwest async HTTP requests.

Aliased Type§

enum AsyncHttpClientError {
    Reqwest(Error),
    Http(Error),
    Io(Error),
    Other(String),
}

Variants§

§

Reqwest(Error)

Error returned by reqwest crate.

§

Http(Error)

Non-reqwest HTTP error.

§

Io(Error)

I/O error.

§

Other(String)

Other error.