Expand description
TOML serialization / deserialization with serde
.
See crate ::toml
.
Modules§
- Deserializing TOML into Rust structures.
- A map of
String
to Value. - Serializing Rust structures into TOML.
- Definition of a TOML value
Macros§
- Construct a
Table
from TOML syntax.
Structs§
- Deserialization TOML document
- Serialization for TOML documents.
- A spanned value, indicating the range at which it is defined in the source.
Enums§
- Representation of a TOML value.
Functions§
- Deserializes a string into a type.
- Serialize the given data structure as a String of TOML.
- Serialize the given data structure as a “pretty” String of TOML.
Type Aliases§
- Type representing a TOML table, payload of the
Value::Table
variant.