pub type EValue<'a> = Value<ElementCtx<'a>>;
Aliased Type§
pub enum EValue<'a> {
Null,
Float(f64),
Int(i64),
Bool(bool),
String(Arc<str>),
List(Vec<Value<ElementCtx<'a>>>),
Structure(BTreeMap<Arc<str>, Value<ElementCtx<'a>>>),
Extra(ElementCtx<'a>),
}