pub trait Decoder where
    Self: Sized
{ fn decode(input: &[u8]) -> Result<(&[u8], Self), DecodeError>; }

Required Methods

Implementations on Foreign Types

Implementors