Expand description
Definition of a TOML spanned value
Structs§
- A parsed TOML datetime value
- Error returned from parsing a
Datetime
in theFromStr
implementation. - Represents a JSON key/value type.
Enums§
- Representation of a TOML value.
Traits§
- Types that can be used to index a
toml::ValueKind
Type Aliases§
- Type representing a TOML array, payload of the
ValueKind::Array
variant - Type representing a value with a span
- Type representing a TOML table, payload of the
ValueKind::Table
variant. By default it is backed by a BTreeMap, enable thepreserve_order
feature to use a LinkedHashMap instead.