pub trait Serde<T>:
Serializer<T>
+ Deserializer<T>
+ Send
+ Sync { }
Expand description
Serializer and Deserializer that can be used to serialize into and deserialize from a given type into a specific wire format, such as JSON, Protobuf, etc.