pub trait Hash<D: Digest>: Sized {
// Required method
fn hash(self) -> Output<D>;
}
Expand description
Trait to compute a SHA-2 hash using the digest type D
Required Methods§
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.