pub trait BitwiseScalar:
TropicalScalar
+ Sealed
+ BitOr<Output = Self>
+ BitAnd<Output = Self> {
const ZERO: Self;
const ONES: Self;
}Expand description
Unsigned-integer element types valid as a TropicalBitwise lane container.
Sealed: only u32 (32 lanes) and u64 (64 lanes) are permitted.
Required Associated Constants§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".