pub trait Decodable: Sized {
    fn decode(buf: &mut &[u8]) -> Result<Self, DecodeError>;
}

Required Methods

Implementations on Foreign Types

Implementors