pub trait Simd: NativeType {
    type Simd: NativeSimd
    where
        <Self::Simd as NativeSimd>::Native == Self
; }
Expand description

Trait implemented by some NativeType that have a SIMD representation.

Associated Types

The SIMD type associated with this trait. This type supports SIMD operations

Implementations on Foreign Types

Implementors