pub type Object = BTreeMap<String, Primitive>;
An object value (a.k.a map, dictionary)
Uses BTreeMap to preserve order.
BTreeMap
struct Object { /* private fields */ }