pub enum Mips32InstructionOpcode {
Show 18 variants
REG = 0,
ADDI = 8,
ADDIU = 9,
SLTI = 10,
SLTIU = 11,
ANDI = 12,
ORI = 13,
XORI = 14,
LUI = 15,
LB = 32,
LH = 33,
LW = 35,
LHU = 37,
SH = 41,
SW = 43,
SB = 40,
BEQ = 4,
BNE = 5,
}
Variants§
REG = 0
ADDI = 8
ADDIU = 9
SLTI = 10
SLTIU = 11
ANDI = 12
ORI = 13
XORI = 14
LUI = 15
LB = 32
LH = 33
LW = 35
LHU = 37
SH = 41
SW = 43
SB = 40
BEQ = 4
BNE = 5
Trait Implementations§
Source§impl Clone for Mips32InstructionOpcode
impl Clone for Mips32InstructionOpcode
Source§fn clone(&self) -> Mips32InstructionOpcode
fn clone(&self) -> Mips32InstructionOpcode
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 Mips32InstructionOpcode
impl Debug for Mips32InstructionOpcode
Source§impl PartialEq for Mips32InstructionOpcode
impl PartialEq for Mips32InstructionOpcode
impl Copy for Mips32InstructionOpcode
impl Eq for Mips32InstructionOpcode
impl StructuralPartialEq for Mips32InstructionOpcode
Auto Trait Implementations§
impl Freeze for Mips32InstructionOpcode
impl RefUnwindSafe for Mips32InstructionOpcode
impl Send for Mips32InstructionOpcode
impl Sync for Mips32InstructionOpcode
impl Unpin for Mips32InstructionOpcode
impl UnwindSafe for Mips32InstructionOpcode
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