Searched refs:DecodingError (Results 1 – 2 of 2) sorted by relevance
13 pub type Result<T, E = DecodingError> = core::result::Result<T, E>;16 pub enum DecodingError { enum49 impl core::fmt::Debug for DecodingError { implementation55 impl core::fmt::Display for DecodingError { implementation84 impl std::error::Error for DecodingError {} implementation160 type Error = DecodingError;163 DecodingError::UnexpectedEof { in unexpected_eof()169 DecodingError::InvalidOpcode { in invalid_opcode()176 DecodingError::InvalidExtendedOpcode { in invalid_extended_opcode()183 DecodingError::InvalidReg { in invalid_reg()
9 use pulley_interpreter::decode::{Decoder, DecodingError, OpVisitor};499 Err(DecodingError::UnexpectedEof { position }) if position == start_addr => break, in disas_pulley()