#[repr(C, align(32))]pub struct mask8x32<S: Simd> {
    pub val: [i8; 32],
    pub simd: S,
}Fields§
§val: [i8; 32]§simd: SImplementations§
Source§impl<S: Simd> mask8x32<S>
 
impl<S: Simd> mask8x32<S>
pub fn not(self) -> mask8x32<S>
pub fn and(self, rhs: impl SimdInto<Self, S>) -> mask8x32<S>
pub fn or(self, rhs: impl SimdInto<Self, S>) -> mask8x32<S>
pub fn xor(self, rhs: impl SimdInto<Self, S>) -> mask8x32<S>
pub fn simd_eq(self, rhs: impl SimdInto<Self, S>) -> mask8x32<S>
pub fn combine(self, rhs: impl SimdInto<Self, S>) -> mask8x64<S>
Trait Implementations§
Source§impl<S: Simd> BitAndAssign<i8> for mask8x32<S>
 
impl<S: Simd> BitAndAssign<i8> for mask8x32<S>
Source§fn bitand_assign(&mut self, rhs: i8)
 
fn bitand_assign(&mut self, rhs: i8)
Performs the 
&= operation. Read moreSource§impl<S: Simd> BitAndAssign for mask8x32<S>
 
impl<S: Simd> BitAndAssign for mask8x32<S>
Source§fn bitand_assign(&mut self, rhs: Self)
 
fn bitand_assign(&mut self, rhs: Self)
Performs the 
&= operation. Read moreSource§impl<S: Simd> BitOrAssign<i8> for mask8x32<S>
 
impl<S: Simd> BitOrAssign<i8> for mask8x32<S>
Source§fn bitor_assign(&mut self, rhs: i8)
 
fn bitor_assign(&mut self, rhs: i8)
Performs the 
|= operation. Read moreSource§impl<S: Simd> BitOrAssign for mask8x32<S>
 
impl<S: Simd> BitOrAssign for mask8x32<S>
Source§fn bitor_assign(&mut self, rhs: Self)
 
fn bitor_assign(&mut self, rhs: Self)
Performs the 
|= operation. Read moreSource§impl<S: Simd> BitXorAssign<i8> for mask8x32<S>
 
impl<S: Simd> BitXorAssign<i8> for mask8x32<S>
Source§fn bitxor_assign(&mut self, rhs: i8)
 
fn bitxor_assign(&mut self, rhs: i8)
Performs the 
^= operation. Read moreSource§impl<S: Simd> BitXorAssign for mask8x32<S>
 
impl<S: Simd> BitXorAssign for mask8x32<S>
Source§fn bitxor_assign(&mut self, rhs: Self)
 
fn bitxor_assign(&mut self, rhs: Self)
Performs the 
^= operation. Read moreSource§impl<S: Simd> SimdBase<i8, S> for mask8x32<S>
 
impl<S: Simd> SimdBase<i8, S> for mask8x32<S>
impl<S: Copy + Simd> Copy for mask8x32<S>
Auto Trait Implementations§
impl<S> Freeze for mask8x32<S>where
    S: Freeze,
impl<S> RefUnwindSafe for mask8x32<S>where
    S: RefUnwindSafe,
impl<S> Send for mask8x32<S>
impl<S> Sync for mask8x32<S>
impl<S> Unpin for mask8x32<S>where
    S: Unpin,
impl<S> UnwindSafe for mask8x32<S>where
    S: UnwindSafe,
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