pub type DecoderResult<T> = Result<T, DecoderError>;
pub enum DecoderResult<T> { Ok(T), Err(DecoderError), }
Contains the success value
Contains the error value