Expand description

Definition of a TOML value

Structs

A parsed TOML date value

A parsed TOML datetime value

Error returned from parsing a Datetime in the FromStr implementation.

Represents a TOML key/value type.

A parsed TOML time value

Enums

A view into a single entry in a map, which may either be vacant or occupied. This enum is constructed from the entry method on Map.

A parsed TOML time offset

Representation of a TOML value.

Traits

Types that can be used to index a toml::Value

Type Definitions

Type representing a TOML array, payload of the Value::Array variant

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