[][src]Module track::serialization

Module with different serializers that can be used with this crate.

By default, a number of serializers are supplied that can be used by turning on the feature flag. You might want to create your own serializing strategy by implementing: SerializationStrategy.

FeatureDescription
bincode-serializationserialization using bincode (enabled by default) .
rmp-serializationserialization using rmp-serde .

Modules

bincode

Implementation of SerializationStrategy for serializing with bincode. It is enabled with the bincode-serialization feature flag.

Structs

ModificationSerializer

A wrapper type over an implementation of SerializationStrategy.

Traits

SerializationStrategy

An adapter interface with extension methods for serializing purposes used in this crate.