pub struct PairedXmm {
pub read: Xmm,
pub write: WritableXmm,
}
Available on crate feature
x86
only.Expand description
A pair of XMM registers, one for reading and one for writing.
Fields§
§read: Xmm
§write: WritableXmm
Trait Implementations§
Source§impl From<Writable<Xmm>> for PairedXmm
impl From<Writable<Xmm>> for PairedXmm
Source§fn from(wxmm: WritableXmm) -> Self
fn from(wxmm: WritableXmm) -> Self
Converts to this type from the input type.
impl Copy for PairedXmm
impl StructuralPartialEq for PairedXmm
Auto Trait Implementations§
impl Freeze for PairedXmm
impl RefUnwindSafe for PairedXmm
impl Send for PairedXmm
impl Sync for PairedXmm
impl Unpin for PairedXmm
impl UnwindSafe for PairedXmm
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