pub struct Insn {
pub pc: usize,
pub op: i32,
pub size: usize,
pub words: Vec<i32>,
}Expand description
A decoded instruction. words[0] is the opcode; the remaining entries are operands.
Fields§
§pc: usize§op: i32§size: usize§words: Vec<i32>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Insn
impl RefUnwindSafe for Insn
impl Send for Insn
impl Sync for Insn
impl Unpin for Insn
impl UnwindSafe for Insn
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