pub enum EvexMasking {
None,
Merging {
k: u8,
},
Zeroing {
k: u8,
},
}
Available on crate feature
x86
only.Expand description
Defines the EVEX masking behavior; masking support is described in section 2.6.4 of the Intel Software Development Manual, volume 2A.
Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EvexMasking
impl RefUnwindSafe for EvexMasking
impl Send for EvexMasking
impl Sync for EvexMasking
impl Unpin for EvexMasking
impl UnwindSafe for EvexMasking
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