pub struct Xsub128 {
    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 Xsub128
 
impl<'arbitrary> Arbitrary<'arbitrary> for Xsub128
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<Xsub128> for ExtendedOp
 
impl From<Xsub128> for ExtendedOp
impl Copy for Xsub128
impl Eq for Xsub128
impl StructuralPartialEq for Xsub128
Auto Trait Implementations§
impl Freeze for Xsub128
impl RefUnwindSafe for Xsub128
impl Send for Xsub128
impl Sync for Xsub128
impl Unpin for Xsub128
impl UnwindSafe for Xsub128
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