Expand description
The value
module contains the Value
type for YAML values.
The Value enum, a loosely typed way of representing any valid YAML value.
Re-exports§
pub use self::tagged::Tag;
pub use self::tagged::TaggedValue;
pub use crate::number::Number;
Modules§
- A representation of YAML’s
!Tag
syntax, used for enums.
Structs§
- A YAML mapping in which the keys and values are both
serde_yml::Value
. - Serializer whose output is a
Value
.
Enums§
- Represents any valid YAML value.
Traits§
- A type that can be used to index into a
serde_yml::Value
. See theget
andget_mut
methods ofValue
.
Functions§
- Interpret a
serde_yml::Value
as an instance of typeT
. - Converts a serializable value into a
serde_yml::Value
.
Type Aliases§
- A YAML sequence in which the elements are
serde_yml::Value
.