serde_yaml_ng

Module mapping

Source
Expand description

A YAML mapping and its iterator types.

Structs§

  • Iterator over serde_yaml_ng::Mapping by value.
  • Iterator of the keys of a serde_yaml_ng::Mapping.
  • Iterator of the values of a serde_yaml_ng::Mapping.
  • Iterator over &serde_yaml_ng::Mapping.
  • Iterator over &mut serde_yaml_ng::Mapping.
  • Iterator of the keys of a &serde_yaml_ng::Mapping.
  • A YAML mapping in which the keys and values are both serde_yaml_ng::Value.
  • A view into an occupied entry in a Mapping. It is part of the Entry enum.
  • A view into a vacant entry in a Mapping. It is part of the Entry enum.
  • Iterator of the values of a &serde_yaml_ng::Mapping.
  • Iterator of the values of a &mut serde_yaml_ng::Mapping.

Enums§

  • Entry for an existing key-value pair or a vacant location to insert one.

Traits§

  • A type that can be used to index into a serde_yaml_ng::Mapping. See the methods get, get_mut, contains_key, and remove of Value.