Crate serde07

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.

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.