pub trait EnvConfig<T = HashMap<String, String>>: AbstractConfig<T> {
// Provided method
fn load(target: Option<String>) -> Result<T, Error>
where T: Default,
HashMap<String, String>: Into<T>,
Self: Sized { ... }
}
Expand description
Indicates that structure can be initialize from environment variables.