pub trait DigestFactory {
type Digest: DigestBuilder + Digest + Send + 'static;
}
Expand description
Allows associating a given Digest type with any arbitrary type
Some downstreams have dependencies on types that implement DigestFactory in order to generate the desired type for computing digests
Required Associated Types§
Sourcetype Digest: DigestBuilder + Digest + Send + 'static
type Digest: DigestBuilder + Digest + Send + 'static
The Digest type associated