pub struct u32x4(/* private fields */);Implementations§
Source§impl u32x4
impl u32x4
pub fn new(a: u32, b: u32, c: u32, d: u32) -> Self
pub fn rotate_right(&mut self, ii: Self) -> Self
pub fn from_slice_unaligned(xs: &[u32]) -> Self
pub fn splat(x: u32) -> Self
pub fn write_to_slice_unaligned(self, xs: &mut [u32])
pub fn replace(self, i: usize, v: u32) -> Self
pub fn extract(self, i: usize) -> u32
Trait Implementations§
Source§impl AddAssign for u32x4
impl AddAssign for u32x4
Source§fn add_assign(&mut self, rhs: Self)
fn add_assign(&mut self, rhs: Self)
Performs the
+= operation. Read moreSource§impl BitXorAssign for u32x4
impl BitXorAssign for u32x4
Source§fn bitxor_assign(&mut self, rhs: Self)
fn bitxor_assign(&mut self, rhs: Self)
Performs the
^= operation. Read moreSource§impl RotateWordsRight for u32x4
impl RotateWordsRight for u32x4
Source§impl SplatRotateRight for u32x4
impl SplatRotateRight for u32x4
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 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