pub trait Serialize<O = Vec<u8>> { type Error; // Required method fn serialize(&self) -> Result<O, Self::Error>; }
Common trait for structures serialization
Type of serialization error
Try to serialize object