pub type ValueMap<'a, T> = Value<BTreeMap<Cow<'a, str>, T>>;
pub enum ValueMap<'a, T> { Value(BTreeMap<Cow<'a, str>, T>), Null, Unknown, }
Value is present
No value is present
Value is unknown