pub trait Digest: Digest {
const ENCODING: DigestEncoding;
}Expand description
Digest extension providing a Self::ENCODING constant defining the string representation
of the digest used for parsing and formatting.
Required Associated Constants§
Sourceconst ENCODING: DigestEncoding
const ENCODING: DigestEncoding
The format used for string representation of the digest.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".