Struct iced_x86::InstructionInfoOptions
source · pub struct InstructionInfoOptions;
Expand description
Instruction info options used by InstructionInfoFactory
Implementations§
source§impl InstructionInfoOptions
impl InstructionInfoOptions
sourcepub const NO_MEMORY_USAGE: u32 = 1u32
pub const NO_MEMORY_USAGE: u32 = 1u32
Don’t include memory usage, i.e., InstructionInfo::used_memory()
will return an empty vector. All
registers that are used by memory operands are still returned by InstructionInfo::used_registers()
.
sourcepub const NO_REGISTER_USAGE: u32 = 2u32
pub const NO_REGISTER_USAGE: u32 = 2u32
Don’t include register usage, i.e., InstructionInfo::used_registers()
will return an empty vector
Auto Trait Implementations§
impl RefUnwindSafe for InstructionInfoOptions
impl Send for InstructionInfoOptions
impl Sync for InstructionInfoOptions
impl Unpin for InstructionInfoOptions
impl UnwindSafe for InstructionInfoOptions
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