pub enum Error {
ZydisError(ZydisError),
UnknownZyanError {
module: u32,
code: u32,
},
UnexpectedNoneRegister,
ExpectedSegmentRegister(Register),
InvalidOperandType(u32),
InvalidMnemonic,
RegisterNotValidInMachineMode {
register: Register,
machine_mode: MachineMode,
},
FormattedInstructionTooLong(Instruction),
}Expand description
the error type of this crate.
Variants§
ZydisError(ZydisError)
UnknownZyanError
UnexpectedNoneRegister
ExpectedSegmentRegister(Register)
InvalidOperandType(u32)
InvalidMnemonic
RegisterNotValidInMachineMode
FormattedInstructionTooLong(Instruction)
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more