Trait stdto_core::ToHash

source ·
pub trait ToHash: ToBytes {
    fn try_to_hash<T: Digest + Write>(&self) -> Result<Output<T>> { ... }
    fn try_to_hash_into<T: Digest + Write>(&self, hasher: &mut T) -> Result<()> { ... }
    fn to_hash<T: Digest + Write>(&self) -> Output<T> { ... }
    fn to_hash_into<T: Digest + Write>(&self, hasher: &mut T) { ... }
}
Expand description

Provided Methods§

Implementors§