#[repr(C, align(32))]pub struct mask64x4<S: Simd> {
pub val: [i64; 4],
pub simd: S,
}
Fields§
§val: [i64; 4]
§simd: S
Implementations§
Source§impl<S: Simd> mask64x4<S>
impl<S: Simd> mask64x4<S>
pub fn not(self) -> mask64x4<S>
pub fn and(self, rhs: impl SimdInto<Self, S>) -> mask64x4<S>
pub fn or(self, rhs: impl SimdInto<Self, S>) -> mask64x4<S>
pub fn xor(self, rhs: impl SimdInto<Self, S>) -> mask64x4<S>
pub fn simd_eq(self, rhs: impl SimdInto<Self, S>) -> mask64x4<S>
pub fn combine(self, rhs: impl SimdInto<Self, S>) -> mask64x8<S>
Trait Implementations§
Source§impl<S: Simd> SimdBase<i64, S> for mask64x4<S>
impl<S: Simd> SimdBase<i64, S> for mask64x4<S>
impl<S: Copy + Simd> Copy for mask64x4<S>
Auto Trait Implementations§
impl<S> Freeze for mask64x4<S>where
S: Freeze,
impl<S> RefUnwindSafe for mask64x4<S>where
S: RefUnwindSafe,
impl<S> Send for mask64x4<S>
impl<S> Sync for mask64x4<S>
impl<S> Unpin for mask64x4<S>where
S: Unpin,
impl<S> UnwindSafe for mask64x4<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