#[repr(C)]pub(crate) struct u32x4(pub(crate) u32, pub(crate) u32, pub(crate) u32, pub(crate) u32);Tuple Fields§
§0: u32§1: u32§2: u32§3: u32Implementations§
Source§impl u32x4
impl u32x4
pub(crate) fn new(e0: u32, e1: u32, e2: u32, e3: u32) -> Self
pub(crate) fn gather( src: &[u32], i0: usize, i1: usize, i2: usize, i3: usize, ) -> Self
pub(crate) fn from_le(self) -> Self
pub(crate) fn to_le(self) -> Self
pub(crate) fn wrapping_add(self, rhs: Self) -> Self
pub(crate) fn rotate_right_const(self, n: u32) -> Self
pub(crate) fn shuffle_left_1(self) -> Self
pub(crate) fn shuffle_left_2(self) -> Self
pub(crate) fn shuffle_left_3(self) -> Self
pub(crate) fn shuffle_right_1(self) -> Self
pub(crate) fn shuffle_right_2(self) -> Self
pub(crate) fn shuffle_right_3(self) -> Self
pub(crate) fn as_bytes(&self) -> &[u8] ⓘ
Trait Implementations§
impl Copy for u32x4
Auto Trait Implementations§
impl Freeze for u32x4
impl RefUnwindSafe for u32x4
impl Send for u32x4
impl Sync for u32x4
impl Unpin for u32x4
impl UnsafeUnpin for u32x4
impl UnwindSafe for u32x4
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more