Enum config_file_handler::Error []

pub enum Error {
    Env(VarError),
    Io(Error),
    JsonDecoder(DecoderError),
    JsonEncoder(EncoderError),
    JsonParser(ParserError),
}

Error types.

Variants

Wrapper for a ::std::env::VarError

Wrapper for a ::std::io::Error

Wrapper for a ::rustc_serialize::json::DecoderError

Wrapper for a ::rustc_serialize::json::EncoderError

Wrapper for a rustc_serialize::json::ParserError

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl Display for Error

Formats the value using the given formatter.

impl Error for Error

A short description of the error. Read more

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

impl From<VarError> for Error

Performs the conversion.

impl From<Error> for Error

Performs the conversion.

impl From<DecoderError> for Error

Performs the conversion.

impl From<EncoderError> for Error

Performs the conversion.

impl From<ParserError> for Error

Performs the conversion.