pub trait Serialize: Serial + Deserial { }
A convenient way to refer to both Serial and Deserial together.
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Generic instance deriving Deserialize for any type that implements both put and get.