pub trait SimdElement {
type Mask: SimdElement;
}Expand description
Types that can be used as elements in SIMD vectors.
Required Associated Types§
Sourcetype Mask: SimdElement
type Mask: SimdElement
The associated mask lane type. This will be a signed integer of the same size as this type.