pub trait VarLookup: Send + Sync { // Required method fn lookup(&self, name: &str) -> Option<String>; }
Trait for looking up variable values. Allows test injection without touching the real process environment.
Returns Some(value) if the variable is set, None if unset.
Some(value)
None