pub struct MulMod;Expand description
Representation of the mulmod instruction.
Trait Implementations§
Source§impl Operation for MulMod
impl Operation for MulMod
Source§type ImmediateRef = Void
type ImmediateRef = Void
The return root type of
Operation::immediate_mut and
Operation::immediate.Source§type Code = MulMod
type Code = MulMod
The return type of
Operation::code.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 Ord for MulMod
impl Ord for MulMod
Source§impl PartialOrd for MulMod
impl PartialOrd for MulMod
impl Copy for MulMod
impl Eq for MulMod
impl StructuralPartialEq for MulMod
Auto Trait Implementations§
impl Freeze for MulMod
impl RefUnwindSafe for MulMod
impl Send for MulMod
impl Sync for MulMod
impl Unpin for MulMod
impl UnwindSafe for MulMod
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