Enum capstone_sys::x86_avx_bcast
source · #[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
source§fn eq(&self, other: &x86_avx_bcast) -> bool
fn eq(&self, other: &x86_avx_bcast) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for x86_avx_bcast
impl Eq for x86_avx_bcast
impl StructuralPartialEq for x86_avx_bcast
Auto Trait Implementations§
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