pub enum Group3Prefix {
OperandSizeOverride,
}
Expand description
Contains the operand-size override prefix (0x66
); also used as a SIMD
prefix. From the reference manual:
The operand-size override prefix allows a program to switch between 16- and 32-bit operand sizes. Either size can be the default; use of the prefix selects the non-default size. Some SSE2/SSE3/SSSE3/SSE4 instructions and instructions using a three-byte sequence of primary opcode bytes may use 66H as a mandatory prefix to express distinct functionality.
Variants§
OperandSizeOverride
Trait Implementations§
Source§impl Display for Group3Prefix
impl Display for Group3Prefix
Auto Trait Implementations§
impl Freeze for Group3Prefix
impl RefUnwindSafe for Group3Prefix
impl Send for Group3Prefix
impl Sync for Group3Prefix
impl Unpin for Group3Prefix
impl UnwindSafe for Group3Prefix
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