pub type DigestResult<T> = Result<T, DigestError>;Expand description
A type alias for the result from the creation of a Digest, with
DigestError returned in Err variants.
Aliased Type§
pub enum DigestResult<T> {
Ok(T),
Err(DigestError),
}