pub trait ProvideEnv: Debug + Send + Sync + UnwindSafe + RefUnwindSafe { // Required method fn get(&self, k: &str) -> Result<String, VarError>; }
Trait for custom environment variable providers.
Get the value of environment variable k.
k