Module serde_json::map

source ·
Expand description

A map of String to serde_json::Value.

By default the map is backed by a BTreeMap. Enable the preserve_order feature of serde_json to use IndexMap instead.

Structs§

  • An owning iterator over a serde_json::Map’s entries.
  • An iterator over a serde_json::Map’s entries.
  • A mutable iterator over a serde_json::Map’s entries.
  • An iterator over a serde_json::Map’s keys.
  • Represents a JSON key/value type.
  • An occupied Entry. It is part of the Entry enum.
  • A vacant Entry. It is part of the Entry enum.
  • An iterator over a serde_json::Map’s values.
  • A mutable iterator over a serde_json::Map’s values.

Enums§

  • A view into a single entry in a map, which may either be vacant or occupied. This enum is constructed from the entry method on Map.