DecoderResult

Type Alias DecoderResult 

Source
pub type DecoderResult = Result<Vec<(Vec<u8>, Vec<u8>)>, DecoderError>;
Expand description

The result returned by the decode method of the Decoder.

Aliased Type§

pub enum DecoderResult {
    Ok(Vec<(Vec<u8>, Vec<u8>)>),
    Err(DecoderError),
}

Variants§

§1.0.0

Ok(Vec<(Vec<u8>, Vec<u8>)>)

Contains the success value

§1.0.0

Err(DecoderError)

Contains the error value