Enum rvk::error::Error[][src]

pub enum Error {
    API(APIError),
    Request(Error),
    Serde(Error),
    Other(String),
}

A generic error

Variants

Errors from the API

Errors with making a request

Serialization/Deserialization errors

Other errors

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter. Read more

impl Display for Error
[src]

Formats the value using the given formatter. Read more

impl From<APIError> for Error
[src]

Performs the conversion.

impl From<Error> for Error
[src]

Performs the conversion.

impl From<Error> for Error
[src]

Performs the conversion.

impl From<String> for Error
[src]

Performs the conversion.

impl From<&'static str> for Error
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Error

impl Sync for Error