pub struct Clrn { /* private fields */ }Implementations§
Trait Implementations§
Source§impl Emulated for Clrn
impl Emulated for Clrn
Source§fn mnemonic(&self) -> &str
fn mnemonic(&self) -> &str
Return the mnemonic for the instruction. This is operand width aware
Source§fn destination(&self) -> &Option<Operand>
fn destination(&self) -> &Option<Operand>
Returns the destination operand
Source§fn size(&self) -> usize
fn size(&self) -> usize
Returns the size of the instruction (in bytes). This should defer to
the original instruction due to the fact that emulation is a lossy
process
Source§fn operand_width(&self) -> &Option<OperandWidth>
fn operand_width(&self) -> &Option<OperandWidth>
Returns the operand width if one is specified
impl Copy for Clrn
impl StructuralPartialEq for Clrn
Auto Trait Implementations§
impl Freeze for Clrn
impl RefUnwindSafe for Clrn
impl Send for Clrn
impl Sync for Clrn
impl Unpin for Clrn
impl UnwindSafe for Clrn
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