pub trait ActiveSet:
Sealed
+ Copy
+ 'static {
const MASK: u64;
const NAME: &'static str;
}Expand description
Marker trait for active lane set types.
Each implementor is a zero-sized type encoding a specific bitmask of lanes.
The MASK constant enables runtime debugging; the type itself provides
compile-time tracking.
Required Associated Constants§
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.