#[repr(u32)]pub enum x86_avx_bcast {
X86_AVX_BCAST_INVALID = 0,
X86_AVX_BCAST_2 = 1,
X86_AVX_BCAST_4 = 2,
X86_AVX_BCAST_8 = 3,
X86_AVX_BCAST_16 = 4,
}
Expand description
AVX broadcast type
Variants§
X86_AVX_BCAST_INVALID = 0
< Uninitialized.
X86_AVX_BCAST_2 = 1
< AVX512 broadcast type {1to2}
X86_AVX_BCAST_4 = 2
< AVX512 broadcast type {1to4}
X86_AVX_BCAST_8 = 3
< AVX512 broadcast type {1to8}
X86_AVX_BCAST_16 = 4
< AVX512 broadcast type {1to16}
Trait Implementations§
Source§impl Clone for x86_avx_bcast
impl Clone for x86_avx_bcast
Source§fn clone(&self) -> x86_avx_bcast
fn clone(&self) -> x86_avx_bcast
Returns a copy 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 x86_avx_bcast
impl Debug for x86_avx_bcast
Source§impl Hash for x86_avx_bcast
impl Hash for x86_avx_bcast
Source§impl PartialEq for x86_avx_bcast
impl PartialEq for x86_avx_bcast
impl Copy for x86_avx_bcast
impl Eq for x86_avx_bcast
impl StructuralPartialEq for x86_avx_bcast
Auto Trait Implementations§
impl Freeze for x86_avx_bcast
impl RefUnwindSafe for x86_avx_bcast
impl Send for x86_avx_bcast
impl Sync for x86_avx_bcast
impl Unpin for x86_avx_bcast
impl UnwindSafe for x86_avx_bcast
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