Enum EvexMasking
pub enum EvexMasking {
None,
Merging {
k: u8,
},
Zeroing {
k: u8,
},
}
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§
§impl Default for EvexMasking
impl Default for EvexMasking
§fn default() -> EvexMasking
fn default() -> EvexMasking
Returns the “default value” for a type. Read more
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