pub trait SimdMask<Element: SimdElement, S: Simd>:
SimdBase<Element, S>
+ Not<Output = Self>
+ BitAnd<Output = Self>
+ BitOr<Output = Self>
+ BitXor<Output = Self> {
// Required method
fn simd_eq(self, rhs: impl SimdInto<Self, S>) -> Self::Mask;
}
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.