pub enum OpFunction {
Show 18 variants
ADD,
SUB,
SLL,
SLT,
SLTU,
XOR,
SRL,
SRA,
OR,
AND,
MUL,
MULH,
MULHSU,
MULHU,
DIV,
DIVU,
REM,
REMU,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for OpFunction
impl Clone for OpFunction
Source§fn clone(&self) -> OpFunction
fn clone(&self) -> OpFunction
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 moreSource§impl Debug for OpFunction
impl Debug for OpFunction
Source§impl PartialEq for OpFunction
impl PartialEq for OpFunction
impl Copy for OpFunction
impl StructuralPartialEq for OpFunction
Auto Trait Implementations§
impl Freeze for OpFunction
impl RefUnwindSafe for OpFunction
impl Send for OpFunction
impl Sync for OpFunction
impl Unpin for OpFunction
impl UnwindSafe for OpFunction
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