Skip to main content

Module de

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§

DeArray
Type representing a TOML array, payload of the DeValue::Array variant
DeFloat
Represents a TOML integer
DeInteger
Represents a TOML integer
Deserializer
Deserialization for TOML documents.
Error
Errors that can occur when deserializing a type.
ValueDeserializer
Deserialization implementation for TOML values.

Enums§

DeValue
Representation of a TOML value.

Functions§

from_slice
Deserializes bytes into a type.
from_str
Deserializes a string into a type.

Type Aliases§

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