pub trait EnvVarSource {
// Required method
fn var(&self, key: &str) -> Option<String>;
}Expand description
Trait for implementing custom environment variable sources. This is useful if you want to
source environment variables from somewhere other than std::env::var.