pub type Metadata = Option<Value>;
Metadata is a type alias for an optional json serialisable value
Metadata
enum Metadata { None, Some(Value), }
No value.
Some value of type T.
T