Expand description
A YAML mapping and its iterator types.
Structs§
- Into
Iter - Iterator over
serde_yaml::Mapping
by value. - Into
Keys - Iterator of the keys of a
serde_yaml::Mapping
. - Into
Values - Iterator of the values of a
serde_yaml::Mapping
. - Iter
- Iterator over
&serde_yaml::Mapping
. - IterMut
- Iterator over
&mut serde_yaml::Mapping
. - Keys
- Iterator of the keys of a
&serde_yaml::Mapping
. - Mapping
- A YAML mapping in which the keys and values are both
serde_yaml::Value
. - Occupied
Entry - A view into an occupied entry in a
Mapping
. It is part of theEntry
enum. - Vacant
Entry - A view into a vacant entry in a
Mapping
. It is part of theEntry
enum. - Values
- Iterator of the values of a
&serde_yaml::Mapping
. - Values
Mut - Iterator of the values of a
&mut serde_yaml::Mapping
.
Enums§
- Entry
- Entry for an existing key-value pair or a vacant location to insert one.
Traits§
- Index
- A type that can be used to index into a
serde_yaml::Mapping
. See the methodsget
,get_mut
,contains_key
, andremove
ofValue
.