pub trait Simd: NativeType {
type Simd: NativeSimd<Native = Self>;
}
Expand description
Trait implemented by some NativeType
that have a SIMD representation.
Required Associated Types§
Sourcetype Simd: NativeSimd<Native = Self>
type Simd: NativeSimd<Native = Self>
The SIMD type associated with this trait. This type supports SIMD operations
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.