pub enum RInstructionOp {
Add,
Sub,
And,
Or,
ShiftLeft,
ShiftRight,
Slt,
Mul,
Div,
Rem,
}
Variants§
Trait Implementations§
Source§impl Clone for RInstructionOp
impl Clone for RInstructionOp
Source§fn clone(&self) -> RInstructionOp
fn clone(&self) -> RInstructionOp
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 RInstructionOp
impl Debug for RInstructionOp
Source§impl PartialEq for RInstructionOp
impl PartialEq for RInstructionOp
impl StructuralPartialEq for RInstructionOp
Auto Trait Implementations§
impl Freeze for RInstructionOp
impl RefUnwindSafe for RInstructionOp
impl Send for RInstructionOp
impl Sync for RInstructionOp
impl Unpin for RInstructionOp
impl UnwindSafe for RInstructionOp
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