Module json

Module json 

Source
Expand description

JSON serialization abstraction.

Provides a unified interface for simd-json (default) and serde_json.

Macros§

json
Construct a simd_json::Value from a JSON literal.

Structs§

Error
Parser error

Enums§

BorrowedValue
Borrowed JSON-DOM Value, consider using the ValueTrait to access its content
Value
Owned JSON-DOM Value, consider using the ValueTrait to access it’s content. This is slower then the BorrowedValue as 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