Enum config_file_handler::Error []

pub enum Error {
    Env(VarError),
    Io(IoError),
    JsonParser(JsonError),
}

Error types.

Variants

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

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

Wrapper for a ::serde_json::Error

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. Read more

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<IoError> for Error

Performs the conversion.

impl From<JsonError> for Error

Performs the conversion.