Module miniserde::json

source ·
Expand description

JSON data format.

See the crate level doc for an example of serializing and deserializing JSON.

Structs§

  • A Vec<Value> with a non-recursive drop impl.
  • A BTreeMap<String, Value> with a non-recursive drop impl.

Enums§

  • A JSON number represented by some Rust primitive.
  • Any valid JSON value.

Functions§

  • Deserialize a JSON string into any deserializable type.
  • Serialize any serializable type into a JSON string.