pub trait U32SimdVec:
Sized
+ Copy
+ Debug
+ Send
+ Sync {
type Descriptor: SimdDescriptor;
const LEN: usize;
// Required methods
fn bitcast_to_i32(
self,
) -> <<Self as U32SimdVec>::Descriptor as SimdDescriptor>::I32Vec;
fn shr<const AMOUNT_U: u32, const AMOUNT_I: i32>(self) -> Self;
}Required Associated Constants§
Required Associated Types§
Required Methods§
fn bitcast_to_i32( self, ) -> <<Self as U32SimdVec>::Descriptor as SimdDescriptor>::I32Vec
fn shr<const AMOUNT_U: u32, const AMOUNT_I: i32>(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.