ValOwn

Type Alias ValOwn 

Source
pub type ValOwn = Value<'static>;

Aliased Type§

pub enum ValOwn {
    Null,
    Bool(bool),
    Num(Num),
    Str(Cow<'static, str>),
    Array(Vec<Value<'static>>),
    Object(BTreeMap<Cow<'static, str>, Value<'static>>),
}

Variants§

§

Null

§

Bool(bool)

§

Num(Num)

§

Str(Cow<'static, str>)

§

Array(Vec<Value<'static>>)

§

Object(BTreeMap<Cow<'static, str>, Value<'static>>)