pub struct Xadd128 {
    pub dst_lo: XReg,
    pub dst_hi: XReg,
    pub lhs_lo: XReg,
    pub lhs_hi: XReg,
    pub rhs_lo: XReg,
    pub rhs_hi: XReg,
}Expand description
dst_hi:dst_lo = lhs_hi:lhs_lo + rhs_hi:rhs_lo
Fields§
§dst_lo: XReg§dst_hi: XReg§lhs_lo: XReg§lhs_hi: XReg§rhs_lo: XReg§rhs_hi: XRegImplementations§
Trait Implementations§
Source§impl<'arbitrary> Arbitrary<'arbitrary> for Xadd128
 
impl<'arbitrary> Arbitrary<'arbitrary> for Xadd128
Source§fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
 
fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of 
Self from the given unstructured data. Read moreSource§fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
 
fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of 
Self from the entirety of the given
unstructured data. Read moreSource§impl From<Xadd128> for ExtendedOp
 
impl From<Xadd128> for ExtendedOp
impl Copy for Xadd128
impl Eq for Xadd128
impl StructuralPartialEq for Xadd128
Auto Trait Implementations§
impl Freeze for Xadd128
impl RefUnwindSafe for Xadd128
impl Send for Xadd128
impl Sync for Xadd128
impl Unpin for Xadd128
impl UnwindSafe for Xadd128
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