[][src]Module toml::value

Definition of a TOML value

Re-exports

pub use map::Map;

Structs

Datetime

A parsed TOML datetime value

DatetimeParseError

Error returned from parsing a Datetime in the FromStr implementation.

Enums

Value

Representation of a TOML value.

Traits

Index

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

Type Definitions

Array

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

Table

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.