pub trait Serialize { // Required method fn to_bytes(&self) -> Vec<u8> ⓘ; }
Serialization.
Serialize Self into a vector of bytes.
Self