Enum strymon_model::config::job::EnvError [] [src]

pub enum EnvError {
    VarErr(VarError),
    IntErr(ParseIntError),
}

Error which occurs when the job process configuration cannot be parsed from the local environment.

Variants

The configuration data could not be parsed because of a missing environment variable.

The configuration data contained invalid numbers.

Trait Implementations

impl Debug for EnvError
[src]

[src]

Formats the value using the given formatter. Read more

impl From<VarError> for EnvError
[src]

[src]

Performs the conversion.

impl From<ParseIntError> for EnvError
[src]

[src]

Performs the conversion.