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

Trait implemented by some NativeType that have a SIMD representation.

Required Associated Types

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

Implementations on Foreign Types

Implementors