Module deserialize

Source
Expand description

Re-exports of serde_json deserialization functions.

This module re-exports the generic serde deserialization functions so that one can deserialize data structures other than Root without being bound to a specific version of serde_json.

Functionsยง

from_reader
Deserialize an instance of type T from an I/O stream of JSON.
from_slice
Deserialize an instance of type T from bytes of JSON text.
from_str
Deserialize an instance of type T from a string of JSON text.
from_value
Interpret a serde_json::Value as an instance of type T.