pub trait Encodable {
    fn encode(&self, out: &mut dyn BufMut);

    fn length(&self) -> usize { ... }
}

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors