pub type ParseResult = BinaryResult<ParsedBinary>;Aliased Type§
pub enum ParseResult {
Ok(Box<dyn BinaryFormatTrait>),
Err(BinaryError),
}Variants§
Ok(Box<dyn BinaryFormatTrait>)
Contains the success value
Err(BinaryError)
Contains the error value