pub trait Encodable { // Required method fn encode(&self) -> Result<Encoded>; }
Encode the type into an Encoded type.
Encoded