[][src]Type Definition toml_spanned_value::spanned_value::Table

type Table = Map<Spanned<String>, SpannedValue>;

Type representing a TOML table, payload of the ValueKind::Table variant. By default it is backed by a BTreeMap, enable the preserve_order feature to use a LinkedHashMap instead.