#[repr(C, align(64))]pub struct PackedBlock256(pub [Block256; 2]);Tuple Fields§
§0: [Block256; 2]Implementations§
Trait Implementations§
Source§impl Add for PackedBlock256
impl Add for PackedBlock256
Source§impl AddAssign for PackedBlock256
impl AddAssign for PackedBlock256
Source§fn add_assign(&mut self, rhs: Self)
fn add_assign(&mut self, rhs: Self)
Performs the
+= operation. Read moreSource§impl Clone for PackedBlock256
impl Clone for PackedBlock256
Source§fn clone(&self) -> PackedBlock256
fn clone(&self) -> PackedBlock256
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PackedBlock256
Source§impl Debug for PackedBlock256
impl Debug for PackedBlock256
Source§impl Default for PackedBlock256
impl Default for PackedBlock256
Source§fn default() -> PackedBlock256
fn default() -> PackedBlock256
Returns the “default value” for a type. Read more
impl Eq for PackedBlock256
Source§impl Mul for PackedBlock256
impl Mul for PackedBlock256
Source§impl Mul<Block256> for PackedBlock256
impl Mul<Block256> for PackedBlock256
Source§impl MulAssign for PackedBlock256
impl MulAssign for PackedBlock256
Source§fn mul_assign(&mut self, rhs: Self)
fn mul_assign(&mut self, rhs: Self)
Performs the
*= operation. Read moreSource§impl MulAssign<Block256> for PackedBlock256
impl MulAssign<Block256> for PackedBlock256
Source§fn mul_assign(&mut self, rhs: Block256)
fn mul_assign(&mut self, rhs: Block256)
Performs the
*= operation. Read moreSource§impl PartialEq for PackedBlock256
impl PartialEq for PackedBlock256
Source§fn eq(&self, other: &PackedBlock256) -> bool
fn eq(&self, other: &PackedBlock256) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PackedBlock256
Source§impl Sub for PackedBlock256
impl Sub for PackedBlock256
Source§impl SubAssign for PackedBlock256
impl SubAssign for PackedBlock256
Source§fn sub_assign(&mut self, rhs: Self)
fn sub_assign(&mut self, rhs: Self)
Performs the
-= operation. Read moreAuto Trait Implementations§
impl Freeze for PackedBlock256
impl RefUnwindSafe for PackedBlock256
impl Send for PackedBlock256
impl Sync for PackedBlock256
impl Unpin for PackedBlock256
impl UnsafeUnpin for PackedBlock256
impl UnwindSafe for PackedBlock256
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