pub type AsyncHttpClientError = Error<Error>;
Error type returned by failed reqwest async HTTP requests.
enum AsyncHttpClientError { Reqwest(Error), Http(Error), Io(Error), Other(String), }
Error returned by reqwest crate.
Non-reqwest HTTP error.
I/O error.
Other error.