pub trait SimdIntElement:
SimdElement
+ Eq
+ Ord
+ Binary
+ Not<Output = Self>
+ Shl<usize, Output = Self>
+ ShlAssign<usize>
+ Shr<usize, Output = Self>
+ ShrAssign<usize>
+ BitAnd<Self, Output = Self>
+ BitAndAssign<Self>
+ BitOr<Self, Output = Self>
+ BitOrAssign<Self>
+ BitXor<Self, Output = Self>
+ BitXorAssign<Self>
+ for<'a> Shl<&'a usize, Output = Self>
+ for<'a> ShlAssign<&'a usize>
+ for<'a> Shr<&'a usize, Output = Self>
+ for<'a> ShrAssign<&'a usize>
+ for<'a> BitAnd<&'a Self, Output = Self>
+ for<'a> BitAndAssign<&'a Self>
+ for<'a> BitOr<&'a Self, Output = Self>
+ for<'a> BitOrAssign<&'a Self>
+ for<'a> BitXor<&'a Self, Output = Self>
+ for<'a> BitXorAssign<&'a Self> { }Expand description
Types that can be used as elements in integer SIMD vectors.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".