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
pub trait EnvironmentConfigurable {
// Required method
fn parse_environment() -> ErrorResult<Self>
where Self: Sized;
}This trait allows to configure the object from the environment