pub type Document = Unstructured<UnstructuredType>;Aliased Type§
pub enum Document {
Show 13 variants
Unassigned,
Null,
Bool(bool),
Number(Number),
String(String),
Char(char),
Bytes(Vec<u8>),
Seq(Vec<Unstructured<UnstructuredType>>),
Map(BTreeMap<Unstructured<UnstructuredType>, Unstructured<UnstructuredType>>),
Option(Option<Box<Unstructured<UnstructuredType>>>),
Newtype(Box<Unstructured<UnstructuredType>>),
Err(UnstructuredError),
Other(DefaultOther),
}