pub trait Serializer<T>where
T: Serialize,{
// Required method
fn put(&mut self, data: T) -> Result<(), SerializationError>;
}
pub trait Serializer<T>where
T: Serialize,{
// Required method
fn put(&mut self, data: T) -> Result<(), SerializationError>;
}