pub trait EnvironmentConfigurable {
    // Required method
    fn parse_environment() -> ErrorResult<Self>
       where Self: Sized;
}
Expand description

This trait allows to configure the object from the environment

Required Methods§

source

fn parse_environment() -> ErrorResult<Self>where Self: Sized,

Implementors§