Enum michromer::error::Error [] [src]

pub enum Error {
    Hyper(HyperError),
    IO(IOError),
    JSON(SerdeJsonError),
}

Variants

Hyper(HyperError)IO(IOError)JSON(SerdeJsonError)

Trait Implementations

impl Debug for Error
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl From<IOError> for Error
[src]

fn from(e: IOError) -> Error

Performs the conversion.

impl From<HyperError> for Error
[src]

fn from(e: HyperError) -> Error

Performs the conversion.

impl From<SerdeJsonError> for Error
[src]

fn from(e: SerdeJsonError) -> Error

Performs the conversion.

impl Display for Error
[src]

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.

impl StdError for Error
[src]

fn description(&self) -> &str

A short description of the error. Read more

fn cause(&self) -> Option<&StdError>

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