pub enum IInstructionOp {
Andi,
Ori,
Addi,
Jalr,
Ecall,
Lw,
Lb,
Xori,
Slti,
Sltiu,
}
Variants§
Andi
Ori
Addi
Jalr
Ecall
Lw
Load Word
Lb
Load Byte
Xori
Slti
Set Less Than Immediate
Sltiu
Set Less Than Immediate Unsigned
Trait Implementations§
Source§impl Clone for IInstructionOp
impl Clone for IInstructionOp
Source§fn clone(&self) -> IInstructionOp
fn clone(&self) -> IInstructionOp
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 IInstructionOp
impl Debug for IInstructionOp
Source§impl PartialEq for IInstructionOp
impl PartialEq for IInstructionOp
impl StructuralPartialEq for IInstructionOp
Auto Trait Implementations§
impl Freeze for IInstructionOp
impl RefUnwindSafe for IInstructionOp
impl Send for IInstructionOp
impl Sync for IInstructionOp
impl Unpin for IInstructionOp
impl UnwindSafe for IInstructionOp
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