Module serialization

Module serialization 

Source

Traits§

Deserialize
A data structure that can be deserialized from any data format supported by Serde.
Deserializer
A data format that can deserialize any data structure supported by Serde.
Serialize
A data structure that can be serialized into any data format supported by Serde.
Serializer
A data format that can serialize any data structure supported by Serde.

Functions§

from_str
Deserialize an instance of type T from a string of JSON text.
to_string
Serialize the given data structure as a String of JSON.
to_string_pretty
Serialize the given data structure as a pretty-printed String of JSON.

Derive Macros§

Deserialize
Serialize