Enum env_file::EnvFileError [] [src]

pub enum EnvFileError {
    EnvVarError(VarError),
    Io(Error),
}

Main error type for this crate

Variants

Error happened while working with environment

Error happened while performing I/O

Trait Implementations

impl Debug for EnvFileError
[src]

Formats the value using the given formatter.

impl From<VarError> for EnvFileError
[src]

Performs the conversion.

impl From<Error> for EnvFileError
[src]

Performs the conversion.

impl Display for EnvFileError
[src]

Formats the value using the given formatter. Read more

impl Error for EnvFileError
[src]

A short description of the error. Read more

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