pub type HexPatternResult = BinaryResult<Vec<Option<u8>>>;
pub enum HexPatternResult { Ok(Vec<Option<u8>>), Err(BinaryError), }
Contains the success value
Contains the error value