Module toml::value

source ·
Expand description

Definition of a TOML value

Re-exports§

  • pub use crate::map::Map;

Structs§

Enums§

  • Representation of a TOML value.

Traits§

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

Type Aliases§

  • 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.