pub struct Xmm<R: AsReg = u8>(/* private fields */);
Expand description
An x64 SSE register (e.g., %xmm0
).
Implementations§
Trait Implementations§
Source§impl<'a, R: AsReg> Arbitrary<'a> for Xmm<R>
impl<'a, R: AsReg> Arbitrary<'a> for Xmm<R>
Source§fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self>
fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self>
Generate an arbitrary value of
Self
from the given unstructured data. Read more§fn arbitrary_take_rest(u: Unstructured<'a>) -> Result<Self, Error>
fn arbitrary_take_rest(u: Unstructured<'a>) -> Result<Self, Error>
Generate an arbitrary value of
Self
from the entirety of the given
unstructured data. Read moreimpl<R: Copy + AsReg> Copy for Xmm<R>
Auto Trait Implementations§
impl<R> Freeze for Xmm<R>where
R: Freeze,
impl<R> RefUnwindSafe for Xmm<R>where
R: RefUnwindSafe,
impl<R> Send for Xmm<R>where
R: Send,
impl<R> Sync for Xmm<R>where
R: Sync,
impl<R> Unpin for Xmm<R>where
R: Unpin,
impl<R> UnwindSafe for Xmm<R>where
R: 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