Enum artifact_app::dev_prefix::env::VarError1.0.0 [] [src]

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

Possible errors from the env::var function.

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

impl Error for VarError
[src]

A short description of the error. Read more

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

impl PartialEq<VarError> 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 Display for VarError
[src]

Formats the value using the given formatter.

impl Clone for VarError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for VarError
[src]

Formats the value using the given formatter.