Type Alias DeTable

Source
pub type DeTable<'i> = Map<Spanned<Cow<'i, str>>, Spanned<DeValue<'i>>>;
Expand description

Type representing a TOML table, payload of the Value::Table variant.

By default it entries are stored in lexicographic order of the keys. Enable the preserve_order feature to store entries in the order they appear in the source file.

Aliased Typeยง

struct DeTable<'i> { /* private fields */ }