Enum envoption::EnvOptionError [] [src]

pub enum EnvOptionError<T> where
    T: Error
{ ParseError(String, T), Missing(String), }

Variants

An error occurred while parsing the environment variable. This error contains the T::Err type from the parse function.

The environment variable was missing.

Trait Implementations

impl<T: Debug> Debug for EnvOptionError<T> where
    T: Error
[src]

Formats the value using the given formatter.

impl<T: PartialEq> PartialEq for EnvOptionError<T> where
    T: Error
[src]

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

This method tests for !=.

impl<T> Display for EnvOptionError<T> where
    T: Error
[src]

Formats the value using the given formatter. Read more

impl<T> Error for EnvOptionError<T> where
    T: Error
[src]

A short description of the error. Read more

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