Expand description
The mapping
module contains the Mapping
type for YAML mappings.
A YAML mapping and its iterator types.
Structs§
- Error returned when a duplicate key is encountered while deserializing a
serde_yml::Mapping
. - Iterator over
serde_yml::Mapping
by value. - Iterator of the keys of a
serde_yml::Mapping
. - Iterator of the values of a
serde_yml::Mapping
. - Iterator over
&serde_yml::Mapping
. - Iterator over
&mut serde_yml::Mapping
. - Iterator of the keys of a
&serde_yml::Mapping
. - A YAML mapping in which the keys and values are both
serde_yml::Value
. - Iterator of the values of a
&serde_yml::Mapping
. - Iterator of the values of a
&mut serde_yml::Mapping
.
Enums§
- Entry for an existing key-value pair or a vacant location to insert one.
Traits§
- A trait for types that can be used to index into a
serde_yml::Mapping
.