pub trait Environment { // Required method fn var(&self, key: &str) -> Result<String, VarError>; }
Source of process-style key/value configuration.
Read key from this environment source.
key
Returns std::env::VarError when the key is absent or its value is not valid Unicode.
std::env::VarError