#[repr(u8)]pub enum YMMRegister {
Show 16 variants
YMM0 = 0,
YMM1 = 1,
YMM2 = 2,
YMM3 = 3,
YMM4 = 4,
YMM5 = 5,
YMM6 = 6,
YMM7 = 7,
YMM8 = 8,
YMM9 = 9,
YMM10 = 10,
YMM11 = 11,
YMM12 = 12,
YMM13 = 13,
YMM14 = 14,
YMM15 = 15,
}Expand description
YMM registers.
Variants§
YMM0 = 0
Register 0.
YMM1 = 1
Register 1.
YMM2 = 2
Register 2.
YMM3 = 3
Register 3.
YMM4 = 4
Register 7.
YMM5 = 5
Register 5.
YMM6 = 6
Register 6.
YMM7 = 7
Register 7.
YMM8 = 8
Register 8.
YMM9 = 9
Register 9.
YMM10 = 10
Register 10.
YMM11 = 11
Register 11.
YMM12 = 12
Register 12.
YMM13 = 13
Register 13.
YMM14 = 14
Register 14.
YMM15 = 15
Register 15.
Trait Implementations§
Source§impl Clone for YMMRegister
impl Clone for YMMRegister
Source§fn clone(&self) -> YMMRegister
fn clone(&self) -> YMMRegister
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for YMMRegister
impl Debug for YMMRegister
Source§impl Default for YMMRegister
impl Default for YMMRegister
Source§impl From<XMMRegister> for YMMRegister
impl From<XMMRegister> for YMMRegister
Source§fn from(value: XMMRegister) -> Self
fn from(value: XMMRegister) -> Self
Converts to this type from the input type.
Source§impl From<YMMRegister> for XMMRegister
impl From<YMMRegister> for XMMRegister
Source§fn from(value: YMMRegister) -> Self
fn from(value: YMMRegister) -> Self
Converts to this type from the input type.
Source§impl Hash for YMMRegister
impl Hash for YMMRegister
Source§impl Into<u8> for YMMRegister
impl Into<u8> for YMMRegister
Source§impl Ord for YMMRegister
impl Ord for YMMRegister
Source§fn cmp(&self, other: &YMMRegister) -> Ordering
fn cmp(&self, other: &YMMRegister) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for YMMRegister
impl PartialEq for YMMRegister
Source§impl PartialOrd for YMMRegister
impl PartialOrd for YMMRegister
impl Copy for YMMRegister
impl Eq for YMMRegister
impl StructuralPartialEq for YMMRegister
Auto Trait Implementations§
impl Freeze for YMMRegister
impl RefUnwindSafe for YMMRegister
impl Send for YMMRegister
impl Sync for YMMRegister
impl Unpin for YMMRegister
impl UnwindSafe for YMMRegister
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