pub trait Encodable {
    fn encode(&self) -> Result<Encoded>;
}
Expand description

Encode the type into an Encoded type.

Required Methods

Encode the type into an Encoded type.

Implementors