pub enum XmmMem<R: AsReg, M: AsReg> {
Xmm(R),
Mem(Amode<M>),
}
Expand description
An XMM register or memory operand.
Variants§
Implementations§
Trait Implementations§
Source§impl<'arbitrary, R: AsReg + Arbitrary<'arbitrary>, M: AsReg + Arbitrary<'arbitrary>> Arbitrary<'arbitrary> for XmmMem<R, M>
impl<'arbitrary, R: AsReg + Arbitrary<'arbitrary>, M: AsReg + Arbitrary<'arbitrary>> Arbitrary<'arbitrary> for XmmMem<R, M>
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 moreAuto Trait Implementations§
impl<R, M> Freeze for XmmMem<R, M>
impl<R, M> RefUnwindSafe for XmmMem<R, M>where
R: RefUnwindSafe,
M: RefUnwindSafe,
impl<R, M> Send for XmmMem<R, M>
impl<R, M> Sync for XmmMem<R, M>
impl<R, M> Unpin for XmmMem<R, M>
impl<R, M> UnwindSafe for XmmMem<R, M>where
R: UnwindSafe,
M: 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