Enum mango_smoothie::errors::Error [] [src]

pub enum Error {
    Json(Error),
    Http(HyperError),
    Url(ParseError),
    Io(Error),
    Query {
        error: String,
        description: String,
    },
}

Variants

Fields of Query

Methods

impl Error
[src]

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

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

Performs the conversion.

impl From<ParseError> for Error
[src]

Performs the conversion.

impl From<JsonError> for Error
[src]

Performs the conversion.

impl From<Error> for Error
[src]

Performs the conversion.