pub type DecoderResult = Result<Vec<(Vec<u8>, Vec<u8>)>, DecoderError>;
The result returned by the decode method of the Decoder.
decode
Decoder
pub enum DecoderResult { Ok(Vec<(Vec<u8>, Vec<u8>)>), Err(DecoderError), }
Contains the success value
Contains the error value