Crate serde08

Crate serde08 

Source

Modules§

bytes
Helper module to enable serializing bytes more efficiently
de
Generic deserialization framework.
iter
Module that contains helper iterators.
ser
Generic serialization framework.

Macros§

forward_to_deserialize
Helper to forward Deserializer methods to Deserializer::deserialize. Every given method ignores all arguments and forwards to deserialize. Note that deserialize_enum simply returns an Error::invalid_type; a better approach is tracked in serde-rs/serde#521.

Traits§

Deserialize
Deserialize represents a type that can be deserialized.
Deserializer
Deserializer is a trait that can deserialize values by threading a Visitor trait through a value. It supports two entry point styles which enables different kinds of deserialization.
Error
Error is a trait that allows a Deserialize to generically create a Deserializer error.
Serialize
A trait that describes a type that can be serialized by a Serializer.
Serializer
A trait that describes a type that can serialize a stream of values into the underlying format.