Expand description
The de
module contains the library’s YAML deserializer.
Structs§
- Represents the current state of an enum during deserialization.
- A structure that deserializes YAML into Rust values.
- A structure that describes anchors and aliases in a YAML document. The anchor name, prefixed in the YAML document with “&”, is represented without the prefix in
anchor_name
. Theanchor_path
is a string that denotes the path to the anchor in the YAML document. Each key that form the path is separated from one another by “/”. Thealiases
vector contains the path to each reference to the anchor in the YAML document.
Enums§
- Represents the different events that can occur during YAML parsing.
- Represents the progress of parsing a YAML document.
Functions§
- Deserialize an instance of type
T
from an IO stream of YAML. - Deserialize an instance of type
T
from bytes of YAML text. - Deserialize an instance of type
T
from a string of YAML text.