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