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