Struct curve25519_dalek::backend::vector::packed_simd::u32x8
source · #[repr(transparent)]pub struct u32x8(_);
Available on
curve25519_dalek_backend="simd"
only.Implementations§
source§impl u32x8
impl u32x8
sourcepub const fn new_const(
x0: u32,
x1: u32,
x2: u32,
x3: u32,
x4: u32,
x5: u32,
x6: u32,
x7: u32
) -> Self
pub const fn new_const( x0: u32, x1: u32, x2: u32, x3: u32, x4: u32, x5: u32, x6: u32, x7: u32 ) -> Self
A constified variant of new
.
Should only be called from const
contexts. At runtime new
is going to be faster.
sourcepub const fn splat_const<const N: u32>() -> Self
pub const fn splat_const<const N: u32>() -> Self
A constified variant of splat
.
Should only be called from const
contexts. At runtime splat
is going to be faster.
Trait Implementations§
source§impl AddAssign<u32x8> for u32x8
impl AddAssign<u32x8> for u32x8
source§fn add_assign(&mut self, rhs: u32x8)
fn add_assign(&mut self, rhs: u32x8)
Performs the
+=
operation. Read moresource§impl BitAndAssign<u32x8> for u32x8
impl BitAndAssign<u32x8> for u32x8
source§fn bitand_assign(&mut self, rhs: u32x8)
fn bitand_assign(&mut self, rhs: u32x8)
Performs the
&=
operation. Read moresource§impl BitXorAssign<u32x8> for u32x8
impl BitXorAssign<u32x8> for u32x8
source§fn bitxor_assign(&mut self, rhs: u32x8)
fn bitxor_assign(&mut self, rhs: u32x8)
Performs the
^=
operation. Read moreimpl Copy for u32x8
impl Eq for u32x8
Auto Trait Implementations§
impl RefUnwindSafe for u32x8
impl Send for u32x8
impl Sync for u32x8
impl Unpin for u32x8
impl UnwindSafe for u32x8
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