pub type Content = Value;
pub enum Content { Integer(Integer), Bytes(Vec<u8>), Float(f64), Text(String), Bool(bool), Null, Tag(u64, Box<Value>), Array(Vec<Value>), Map(Vec<(Value, Value)>), }
An integer
Bytes
A float
A string
A boolean
Null
Tag
An array
A map