pub struct SerializingHasher64<Inner> { /* private fields */ }
Expand description
Serializes 64-bit field elements to bytes (i.e. the little-endian encoding of their canonical
values), then hashes those bytes using some inner hasher, and outputs a [u8; 32]
.
Implementations§
Source§impl<Inner> SerializingHasher64<Inner>
impl<Inner> SerializingHasher64<Inner>
Trait Implementations§
Source§impl<Inner: Clone> Clone for SerializingHasher64<Inner>
impl<Inner: Clone> Clone for SerializingHasher64<Inner>
Source§fn clone(&self) -> SerializingHasher64<Inner>
fn clone(&self) -> SerializingHasher64<Inner>
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<F, Inner> CryptographicHasher<F, [u8; 32]> for SerializingHasher64<Inner>
impl<F, Inner> CryptographicHasher<F, [u8; 32]> for SerializingHasher64<Inner>
fn hash_iter<I>(&self, input: I) -> [u8; 32]where
I: IntoIterator<Item = F>,
fn hash_iter_slices<'a, I>(&self, input: I) -> Outwhere
I: IntoIterator<Item = &'a [Item]>,
Item: 'a,
fn hash_slice(&self, input: &[Item]) -> Out
fn hash_item(&self, input: Item) -> Out
Source§impl<P, PW, Inner> CryptographicHasher<P, [PW; 4]> for SerializingHasher64<Inner>where
P: PackedValue,
P::Value: PrimeField64,
PW: PackedValue<Value = u64>,
Inner: CryptographicHasher<PW, [PW; 4]>,
impl<P, PW, Inner> CryptographicHasher<P, [PW; 4]> for SerializingHasher64<Inner>where
P: PackedValue,
P::Value: PrimeField64,
PW: PackedValue<Value = u64>,
Inner: CryptographicHasher<PW, [PW; 4]>,
fn hash_iter<I>(&self, input: I) -> [PW; 4]where
I: IntoIterator<Item = P>,
fn hash_iter_slices<'a, I>(&self, input: I) -> Outwhere
I: IntoIterator<Item = &'a [Item]>,
Item: 'a,
fn hash_slice(&self, input: &[Item]) -> Out
fn hash_item(&self, input: Item) -> Out
Source§impl<Inner: Debug> Debug for SerializingHasher64<Inner>
impl<Inner: Debug> Debug for SerializingHasher64<Inner>
impl<Inner: Copy> Copy for SerializingHasher64<Inner>
Auto Trait Implementations§
impl<Inner> Freeze for SerializingHasher64<Inner>where
Inner: Freeze,
impl<Inner> RefUnwindSafe for SerializingHasher64<Inner>where
Inner: RefUnwindSafe,
impl<Inner> Send for SerializingHasher64<Inner>where
Inner: Send,
impl<Inner> Sync for SerializingHasher64<Inner>where
Inner: Sync,
impl<Inner> Unpin for SerializingHasher64<Inner>where
Inner: Unpin,
impl<Inner> UnwindSafe for SerializingHasher64<Inner>where
Inner: UnwindSafe,
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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