pub trait SIMD {
type Element;
type Lane;
// Required methods
fn splat(element: Self::Element) -> Self;
fn new_lane(lane: Self::Lane) -> Self;
}
Expand description
Trait for SIMD objects and their creation.
Required Associated Types§
Required Methods§
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.