Module de

Source
Expand description

Deserializing TOML into Rust structures.

This module contains all the Serde support for deserializing TOML documents into Rust structures. Note that some top-level functions here are also provided at the top of the crate.

Structs§

DeArrayparse
Type representing a TOML array, payload of the DeValue::Array variant
DeFloatparse
Represents a TOML integer
DeIntegerparse
Represents a TOML integer
Deserializerparse and serde
Deserialization for TOML documents.
Error
Errors that can occur when deserializing a type.
ValueDeserializerparse and serde
Deserialization implementation for TOML values.

Enums§

DeValueparse
Representation of a TOML value.

Functions§

from_sliceparse and serde
Deserializes bytes into a type.
from_strparse and serde
Deserializes a string into a type.

Type Aliases§

DeStringparse
Type representing a TOML string, payload of the DeValue::String variant
DeTableparse
Type representing a TOML table, payload of the Value::Table variant.