pub trait Serialize: Serial + Deserial { }
Expand description

A convenient way to refer to both Serial and Deserial together.

Implementors§

source§

impl<A: Deserial + Serial> Serialize for A

Generic instance deriving Deserialize for any type that implements both put and get.