DigestBuilder

Trait DigestBuilder 

Source
pub trait DigestBuilder: Digest {
    // Required method
    fn build() -> Self;
}
Expand description

Describes creating a new Digest type

Required Methods§

Source

fn build() -> Self

Create the Digest

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.

Implementors§