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

NotPresent(String)

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

NotUnicode(OsString)

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 Clone for VarError
[src]

fn clone(&self) -> VarError

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Eq for VarError
[src]

impl PartialEq for VarError
[src]

fn eq(&self, __arg_0: &VarError) -> bool

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

fn ne(&self, __arg_0: &VarError) -> bool

This method tests for !=.

impl Debug for VarError
[src]

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

Formats the value using the given formatter.

impl Display for VarError
[src]

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

Formats the value using the given formatter.

impl Error for VarError
[src]

fn description(&self) -> &str

A short description of the error. Read more

fn cause(&self) -> Option<&Error>
1.0.0

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