pub enum TupleType {
Show 13 variants
Full,
Half,
FullMem,
Tuple1Scalar,
Tuple1Fixed,
Tuple2,
Tuple4,
Tuple8,
HalfMem,
QuarterMem,
EigthMem,
Mem128,
Movddup,
}
Expand description
Tuple Type definitions used in EVEX encodings.
This enumeration corresponds to table 2-34 and 2-35 in the Intel manual. This is a property of all instruction formats listed in the encoding table for each instruction.
Variants§
Full
Half
FullMem
Tuple1Scalar
Tuple1Fixed
Tuple2
Tuple4
Tuple8
HalfMem
QuarterMem
EigthMem
Mem128
Movddup
Auto Trait Implementations§
impl Freeze for TupleType
impl RefUnwindSafe for TupleType
impl Send for TupleType
impl Sync for TupleType
impl Unpin for TupleType
impl UnwindSafe for TupleType
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