pub trait VariableMap { // Required method fn lookup(&self, varname: &str) -> Option<Value<'_>>; }
Resolve variables by name.
Get the value of the variable varname, or return None for an unknown variable name.
varname
None