Enum hubcaps::errors::Error [] [src]

pub enum Error {
    Codec(SerdeError),
    Http(HttpError),
    IO(IoError),
    Parse(String),
    Fault {
        code: StatusCode,
        error: ClientError,
    },
}

enumerated types of client errors

Variants

Fields

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

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 Display for Error
[src]

Formats the value using the given formatter.

impl From<SerdeError> for Error
[src]

Performs the conversion.

impl From<HttpError> for Error
[src]

Performs the conversion.

impl From<IoError> for Error
[src]

Performs the conversion.