#[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 for HashSha3256
impl PartialEq for HashSha3256
Source§impl PartialOrd for HashSha3256
impl PartialOrd for HashSha3256
Source§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 StructuralPartialEq for HashSha3256
Auto Trait Implementations§
impl Freeze for HashSha3256
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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.