pub struct Insn {
pub address: u32,
pub opcode: u32,
}Expand description
One fetched-but-not-yet-executed instruction word, tagged with the address it was fetched
from (Mesen2 ArmV3InstructionData).
Fields§
§address: u32The byte address this word was fetched from.
opcode: u32The raw 32-bit instruction word.
Trait Implementations§
impl Copy for Insn
impl Eq for Insn
impl StructuralPartialEq for Insn
Auto Trait Implementations§
impl Freeze for Insn
impl RefUnwindSafe for Insn
impl Send for Insn
impl Sync for Insn
impl Unpin for Insn
impl UnsafeUnpin 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