pub trait Words4 {
// Required methods
fn shuffle1230(self) -> Self;
fn shuffle2301(self) -> Self;
fn shuffle3012(self) -> Self;
}
Expand description
A vector composed of four words; depending on their size, operations may cross lanes.
Required Methods§
fn shuffle1230(self) -> Self
fn shuffle2301(self) -> Self
fn shuffle3012(self) -> Self
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.