pub struct M680xInsnDetail<'a>(/* private fields */);Expand description
Contains M680X-specific details for an instruction
Implementations§
Source§impl<'a> M680xInsnDetail<'a>
impl<'a> M680xInsnDetail<'a>
Sourcepub fn is_first_op_in_mnem(&self) -> bool
pub fn is_first_op_in_mnem(&self) -> bool
The first (register) operand is part of the instruction mnemonic
Sourcepub fn is_second_op_in_mnem(&self) -> bool
pub fn is_second_op_in_mnem(&self) -> bool
The second (register) operand is part of the instruction mnemonic
Trait Implementations§
Source§impl<'a> Debug for M680xInsnDetail<'a>
impl<'a> Debug for M680xInsnDetail<'a>
Source§impl<'a> DetailsArchInsn for M680xInsnDetail<'a>
impl<'a> DetailsArchInsn for M680xInsnDetail<'a>
type OperandIterator = M680xOperandIterator<'a>
type Operand = M680xOperand
fn operands(&self) -> M680xOperandIterator<'a> ⓘ
Source§impl<'a> PartialEq for M680xInsnDetail<'a>
impl<'a> PartialEq for M680xInsnDetail<'a>
Auto Trait Implementations§
impl<'a> Freeze for M680xInsnDetail<'a>
impl<'a> RefUnwindSafe for M680xInsnDetail<'a>
impl<'a> Send for M680xInsnDetail<'a>
impl<'a> Sync for M680xInsnDetail<'a>
impl<'a> Unpin for M680xInsnDetail<'a>
impl<'a> UnwindSafe for M680xInsnDetail<'a>
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