pub struct Push7<I>(pub I)
where
I: Immediate<7usize>;Expand description
Representation of the push7 instruction.
Tuple Fields§
§0: IThe immediate argument for this operation.
Trait Implementations§
Source§impl<I> Operation for Push7<I>where
I: Immediate<7usize>,
impl<I> Operation for Push7<I>where
I: Immediate<7usize>,
Source§type ImmediateRef = I
type ImmediateRef = I
The return root type of
Operation::immediate_mut and
Operation::immediate.Source§fn immediate(&self) -> Option<&Self::ImmediateRef>
fn immediate(&self) -> Option<&Self::ImmediateRef>
Get a shared reference to the immediate argument of this operation,
if one exists.
Source§fn immediate_mut(&mut self) -> Option<&mut Self::ImmediateRef>
fn immediate_mut(&mut self) -> Option<&mut Self::ImmediateRef>
Get a mutable reference to the immediate argument of this operation,
if one exists.
Source§fn into_immediate(self) -> Option<Self::Immediate>
fn into_immediate(self) -> Option<Self::Immediate>
Consume this operation and return its immediate argument, if one
exists.
Source§fn is_jump(&self) -> bool
fn is_jump(&self) -> bool
Returns true if the current instruction changes the program counter (other
than incrementing it.)
Source§fn is_jump_target(&self) -> bool
fn is_jump_target(&self) -> bool
Returns true if the current instruction is a valid destination for jumps.
Source§impl<I> Ord for Push7<I>
impl<I> Ord for Push7<I>
Source§impl<I> PartialOrd for Push7<I>where
I: Immediate<7usize> + PartialOrd,
impl<I> PartialOrd for Push7<I>where
I: Immediate<7usize> + PartialOrd,
impl<I> Copy for Push7<I>
impl<I> Eq for Push7<I>
impl<I> StructuralPartialEq for Push7<I>where
I: Immediate<7usize>,
Auto Trait Implementations§
impl<I> Freeze for Push7<I>where
I: Freeze,
impl<I> RefUnwindSafe for Push7<I>where
I: RefUnwindSafe,
impl<I> Send for Push7<I>where
I: Send,
impl<I> Sync for Push7<I>where
I: Sync,
impl<I> Unpin for Push7<I>where
I: Unpin,
impl<I> UnwindSafe for Push7<I>where
I: UnwindSafe,
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