ValueMap

Type Alias ValueMap 

Source
pub type ValueMap<'a, T> = Value<BTreeMap<Cow<'a, str>, T>>;

Aliased Type§

pub enum ValueMap<'a, T> {
    Value(BTreeMap<Cow<'a, str>, T>),
    Null,
    Unknown,
}

Variants§

§

Value(BTreeMap<Cow<'a, str>, T>)

Value is present

§

Null

No value is present

§

Unknown

Value is unknown