Module serde_yaml::value 
source · Expand description
The Value enum, a loosely typed way of representing any valid YAML value.
Structs
- A YAML mapping in which the keys and values are both
serde_yaml::Value. - Represents a YAML number, whether integer or floating point.
 - Serializer whose output is a
Value. - A representation of YAML’s
!Tagsyntax, used for enums. - A
Tag+Valuerepresenting a tagged YAML scalar, sequence, or mapping. 
Enums
- Represents any valid YAML value.
 
Traits
- A type that can be used to index into a
serde_yaml::Value. See thegetandget_mutmethods ofValue. 
Functions
- Interpret a
serde_yaml::Valueas an instance of typeT. - Convert a
Tintoserde_yaml::Valuewhich is an enum that can represent any valid YAML data. 
Type Aliases
- A YAML sequence in which the elements are
serde_yaml::Value.