Struct concordium_std::HashSha3256
source · #[repr(transparent)]pub struct HashSha3256(pub [u8; 32]);
Expand description
Sha3 digest with 256 bits (32 bytes).
Tuple Fields§
§0: [u8; 32]
Trait Implementations§
source§impl Clone for HashSha3256
impl Clone for HashSha3256
source§fn clone(&self) -> HashSha3256
fn clone(&self) -> HashSha3256
Returns a copy 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 HashSha3256
impl Debug for HashSha3256
source§impl Deserial for HashSha3256
impl Deserial for HashSha3256
source§impl Ord for HashSha3256
impl Ord for HashSha3256
source§fn cmp(&self, other: &HashSha3256) -> Ordering
fn cmp(&self, other: &HashSha3256) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<HashSha3256> for HashSha3256
impl PartialEq<HashSha3256> for HashSha3256
source§fn eq(&self, other: &HashSha3256) -> bool
fn eq(&self, other: &HashSha3256) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<HashSha3256> for HashSha3256
impl PartialOrd<HashSha3256> for HashSha3256
source§fn partial_cmp(&self, other: &HashSha3256) -> Option<Ordering>
fn partial_cmp(&self, other: &HashSha3256) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl SchemaType for HashSha3256
impl SchemaType for HashSha3256
source§impl Serial for HashSha3256
impl Serial for HashSha3256
impl Copy for HashSha3256
impl Eq for HashSha3256
impl StructuralEq for HashSha3256
impl StructuralPartialEq for HashSha3256
Auto Trait Implementations§
impl RefUnwindSafe for HashSha3256
impl Send for HashSha3256
impl Sync for HashSha3256
impl Unpin for HashSha3256
impl UnwindSafe for HashSha3256
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<D, S> DeserialWithState<S> for Dwhere
D: Deserial,
S: HasStateApi,
impl<D, S> DeserialWithState<S> for Dwhere D: Deserial, S: HasStateApi,
source§fn deserial_with_state<R>(_state: &S, source: &mut R) -> Result<D, ParseError>where
R: Read,
fn deserial_with_state<R>(_state: &S, source: &mut R) -> Result<D, ParseError>where R: Read,
Attempt to read a structure from a given source and state, failing if
an error occurs during deserialization or reading.