pub type EnvLookup<'a> = &'a dyn Fn(&str) -> Option<String>;Expand description
How the process environment is read.
Injected rather than called directly so tests can exercise the declared variables without mutating the environment of the whole test binary, which races every other test in it.