#[repr(C, align(32))]pub struct PackedBlock128(pub [Block128; 4]);Expand description
A SIMD register containing PACKED_WIDTH
of Block128 elements. Force 32-byte alignment
for AVX2 compatibility.
Tuple Fields§
§0: [Block128; 4]Implementations§
Trait Implementations§
Source§impl Add for PackedBlock128
impl Add for PackedBlock128
Source§impl AddAssign for PackedBlock128
impl AddAssign for PackedBlock128
Source§fn add_assign(&mut self, rhs: Self)
fn add_assign(&mut self, rhs: Self)
Performs the
+= operation. Read moreSource§impl Clone for PackedBlock128
impl Clone for PackedBlock128
Source§fn clone(&self) -> PackedBlock128
fn clone(&self) -> PackedBlock128
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PackedBlock128
impl Debug for PackedBlock128
Source§impl Default for PackedBlock128
impl Default for PackedBlock128
Source§fn default() -> PackedBlock128
fn default() -> PackedBlock128
Returns the “default value” for a type. Read more
Source§impl Mul<Block128> for PackedBlock128
impl Mul<Block128> for PackedBlock128
Source§impl Mul for PackedBlock128
impl Mul for PackedBlock128
Source§impl MulAssign<Block128> for PackedBlock128
impl MulAssign<Block128> for PackedBlock128
Source§fn mul_assign(&mut self, rhs: Block128)
fn mul_assign(&mut self, rhs: Block128)
Performs the
*= operation. Read moreSource§impl MulAssign for PackedBlock128
impl MulAssign for PackedBlock128
Source§fn mul_assign(&mut self, rhs: Self)
fn mul_assign(&mut self, rhs: Self)
Performs the
*= operation. Read moreSource§impl PartialEq for PackedBlock128
impl PartialEq for PackedBlock128
Source§impl Sub for PackedBlock128
impl Sub for PackedBlock128
Source§impl SubAssign for PackedBlock128
impl SubAssign for PackedBlock128
Source§fn sub_assign(&mut self, rhs: Self)
fn sub_assign(&mut self, rhs: Self)
Performs the
-= operation. Read moreimpl Copy for PackedBlock128
impl Eq for PackedBlock128
impl StructuralPartialEq for PackedBlock128
Auto Trait Implementations§
impl Freeze for PackedBlock128
impl RefUnwindSafe for PackedBlock128
impl Send for PackedBlock128
impl Sync for PackedBlock128
impl Unpin for PackedBlock128
impl UnsafeUnpin for PackedBlock128
impl UnwindSafe for PackedBlock128
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more