pub struct Instruction<'emu, M: Memory> { /* private fields */ }
Expand description
A single instruction from an emulator.
Implementations§
Source§impl<'emu, M: Memory> Instruction<'emu, M>
impl<'emu, M: Memory> Instruction<'emu, M>
Trait Implementations§
Source§impl<'emu, M: Clone + Memory> Clone for Instruction<'emu, M>
impl<'emu, M: Clone + Memory> Clone for Instruction<'emu, M>
Source§fn clone(&self) -> Instruction<'emu, M>
fn clone(&self) -> Instruction<'emu, M>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl<'emu, M: Copy + Memory> Copy for Instruction<'emu, M>
impl<'emu, M: Eq + Memory> Eq for Instruction<'emu, M>
impl<'emu, M: Memory> StructuralPartialEq for Instruction<'emu, M>
Auto Trait Implementations§
impl<'emu, M> Freeze for Instruction<'emu, M>
impl<'emu, M> RefUnwindSafe for Instruction<'emu, M>where
M: RefUnwindSafe,
impl<'emu, M> Send for Instruction<'emu, M>where
M: Sync,
impl<'emu, M> Sync for Instruction<'emu, M>where
M: Sync,
impl<'emu, M> Unpin for Instruction<'emu, M>
impl<'emu, M> UnwindSafe for Instruction<'emu, M>where
M: RefUnwindSafe,
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