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 bothserde_yaml::Value.
- Represents a YAML number, whether integer or floating point.
- Serializer whose output is aValue.
- A representation of YAML’s!Tagsyntax, used for enums.
- ATag+Valuerepresenting a tagged YAML scalar, sequence, or mapping.
Enums
- Represents any valid YAML value.
Traits
- A type that can be used to index into aserde_yaml::Value. See thegetandget_mutmethods ofValue.
Functions
- Interpret aserde_yaml::Valueas an instance of typeT.
- Convert aTintoserde_yaml::Valuewhich is an enum that can represent any valid YAML data.
Type Definitions
- A YAML sequence in which the elements areserde_yaml::Value.