Enum envvar::VarError [] [src]

pub enum VarError {
    NotPresent(String),
    NotUnicode(OsString),
}

Same as std::env::VarError but provides access to the name of the environment variable which is NotPresent

Variants

The specified environment variable was not present in the current process's environment.

The specified environment variable was found, but it did not contain valid unicode data. The found data is returned as a payload of this variant.

Trait Implementations

impl Debug for VarError
[src]

Formats the value using the given formatter.

impl PartialEq for VarError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for VarError
[src]

impl Clone for VarError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Display for VarError
[src]

Formats the value using the given formatter. Read more

impl Error for VarError
[src]

A short description of the error. Read more

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