pub type JsonPrimitive = StringOrNumberOrBoolOrNull;
pub enum JsonPrimitive { String(String), Number(f64), Bool(bool), Null, }