Serialize

Trait Serialize 

Source
pub trait Serialize: Serial + Deserial { }
Expand description

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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<A> Serialize for A
where A: Deserial + Serial,

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