Module ser

Generic data structure serialization framework.

The two most important traits in this module are Serialize and Serializer.

The Serialize trait

Serde provides Serialize implementations for many Rust primitive and standard library types. The complete list is below. All of these can be serialized using Serde out of the box.

Additionally, Serde provides a procedural macro called serde_derive to automatically generate Serialize implementations for structs and enums in your program. See the derive section of the manual for how to use this.

In rare cases it may be necessary to implement Serialize manually for some type in your program. See the Implementing Serialize section of the manual for more about this.

Third-party crates may provide Serialize implementations for types that they expose. For example the linked-hash-map crate provides a LinkedHashMap<K, V> type that is serializable by Serde because the crate provides an implementation of Serialize for it.

The Serializer trait

Serializer implementations are provided by third-party crates, for example serde_json, serde_yaml and postcard.

A partial list of well-maintained formats is given on the Serde website.

Implementations of Serialize provided by Serde

Structs

Traits