Enum rust_client::error::RequestError[][src]

pub enum RequestError {
    Reqwest(Error),
    UnsupportedMethod(Method),
}

Variants

Trait Implementations

impl Debug for RequestError
[src]

Formats the value using the given formatter. Read more

impl Display for RequestError
[src]

Formats the value using the given formatter. Read more

impl Error for RequestError
[src]

This method is soft-deprecated. Read more

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

impl From<Error> for RequestError
[src]

Performs the conversion.

Auto Trait Implementations