//! Common traits /// Common trait for structures serialization pub trait Serialize> { /// Type of serialization error type Error; /// Try to serialize object fn serialize(&self) -> Result; }