serde_yml

Module value

Source
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§

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 the get and get_mut methods of Value.

Functions§

  • Interpret a serde_yml::Value as an instance of type T.
  • Converts a serializable value into a serde_yml::Value.

Type Aliases§

  • A YAML sequence in which the elements are serde_yml::Value.