Struct libp2p::multihash::Blake3Hasher [−][src]
pub struct Blake3Hasher<S> where
S: Size, { /* fields omitted */ }
Multihash hasher.
Trait Implementations
impl<S> Debug for Blake3Hasher<S> where
S: Debug + Size,
[src]
impl<S> Debug for Blake3Hasher<S> where
S: Debug + Size,
[src]impl<S> Default for Blake3Hasher<S> where
S: Size,
[src]
impl<S> Default for Blake3Hasher<S> where
S: Size,
[src]pub fn default() -> Blake3Hasher<S>
[src]
impl<S> StatefulHasher for Blake3Hasher<S> where
S: Size,
[src]
impl<S> StatefulHasher for Blake3Hasher<S> where
S: Size,
[src]type Size = S
The maximum Digest size for that hasher (it is stack allocated).
type Digest = Blake3Digest<<Blake3Hasher<S> as StatefulHasher>::Size>
The Digest type to distinguish the output of different Hasher
implementations.
pub fn update(&mut self, input: &[u8])
[src]
pub fn finalize(&self) -> <Blake3Hasher<S> as StatefulHasher>::Digest
[src]
pub fn reset(&mut self)
[src]
Auto Trait Implementations
impl<S> RefUnwindSafe for Blake3Hasher<S> where
S: RefUnwindSafe,
S: RefUnwindSafe,
impl<S> Send for Blake3Hasher<S>
impl<S> Sync for Blake3Hasher<S>
impl<S> Unpin for Blake3Hasher<S> where
S: Unpin,
S: Unpin,
impl<S> UnwindSafe for Blake3Hasher<S> where
S: UnwindSafe,
S: UnwindSafe,
Blanket Implementations
impl<T> Hasher for T where
T: StatefulHasher,
[src]
impl<T> Hasher for T where
T: StatefulHasher,
[src]type Size = <T as StatefulHasher>::Size
The maximum Digest size for that hasher (it is stack allocated).
type Digest = <T as StatefulHasher>::Digest
The Digest type to distinguish the output of different Hasher
implementations.