Expand description
JSON serialization abstraction.
Provides a unified interface for simd-json (default) and serde_json.
Macros§
- json
- Construct a
simd_json::Valuefrom a JSON literal.
Structs§
- Error
- Parser error
Enums§
- Borrowed
Value - Borrowed JSON-DOM Value, consider using the
ValueTraitto access its content - Value
- Owned JSON-DOM Value, consider using the
ValueTraitto access it’s content. This is slower then theBorrowedValueas a tradeoff for getting rid of lifetimes.
Functions§
- from_
borrowed_ value - from_
slice_ mut - Parse JSON from a mutable slice (Zero-Copy).
- from_
str - from_
value - to_
borrowed_ value - to_
string - to_
value