pub trait EagerHash: BlockSizeUser + Digest {
type Core: HashMarker + UpdateCore<BlockSize = Self::BlockSize> + FixedOutputCore<BufferKind = Eager> + BlockSizeUser + BufferKindUser + Default + Clone;
}Expand description
Trait implemented by eager hashes which expose their block-level core.
Required Associated Types§
Sourcetype Core: HashMarker + UpdateCore<BlockSize = Self::BlockSize> + FixedOutputCore<BufferKind = Eager> + BlockSizeUser + BufferKindUser + Default + Clone
type Core: HashMarker + UpdateCore<BlockSize = Self::BlockSize> + FixedOutputCore<BufferKind = Eager> + BlockSizeUser + BufferKindUser + Default + Clone
Block-level core type of the hash.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.