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