Trait eventually::serde::Serde

source ·
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.

Implementors§

source§

impl<S, T> Serde<T> for S
where S: Serializer<T> + Deserializer<T>,