pub struct Rs1Rs2Operands<Reg> {
pub rs1: Reg,
pub rs2: Reg,
}Expand description
rs1/rs2 instruction operands
Fields§
§rs1: Regrs1 operand.
Zero register if rs1 was missing in the original instruction definition.
rs2: Regrs2 operand.
Zero register if rs2 was missing in the original instruction definition.
Trait Implementations§
Source§impl<Reg: Clone> Clone for Rs1Rs2Operands<Reg>
impl<Reg: Clone> Clone for Rs1Rs2Operands<Reg>
Source§fn clone(&self) -> Rs1Rs2Operands<Reg>
fn clone(&self) -> Rs1Rs2Operands<Reg>
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<Reg: Debug> Debug for Rs1Rs2Operands<Reg>
impl<Reg: Debug> Debug for Rs1Rs2Operands<Reg>
Source§impl<Reg: Default> Default for Rs1Rs2Operands<Reg>
impl<Reg: Default> Default for Rs1Rs2Operands<Reg>
Source§fn default() -> Rs1Rs2Operands<Reg>
fn default() -> Rs1Rs2Operands<Reg>
Returns the “default value” for a type. Read more
impl<Reg: Copy> Copy for Rs1Rs2Operands<Reg>
Auto Trait Implementations§
impl<Reg> Freeze for Rs1Rs2Operands<Reg>where
Reg: Freeze,
impl<Reg> RefUnwindSafe for Rs1Rs2Operands<Reg>where
Reg: RefUnwindSafe,
impl<Reg> Send for Rs1Rs2Operands<Reg>where
Reg: Send,
impl<Reg> Sync for Rs1Rs2Operands<Reg>where
Reg: Sync,
impl<Reg> Unpin for Rs1Rs2Operands<Reg>where
Reg: Unpin,
impl<Reg> UnsafeUnpin for Rs1Rs2Operands<Reg>where
Reg: UnsafeUnpin,
impl<Reg> UnwindSafe for Rs1Rs2Operands<Reg>where
Reg: UnwindSafe,
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