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
VarErr(VarError)
The configuration data could not be parsed because of a missing environment variable.
IntErr(ParseIntError)
The configuration data contained invalid numbers.
Trait Implementations
impl Debug for EnvError
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl From<VarError> for EnvError
[src]
impl From<ParseIntError> for EnvError
[src]
fn from(int: ParseIntError) -> Self
[src]
Performs the conversion.