pub trait Digestible {
    // Required method
    fn digest(&self) -> Digest;
}
Expand description

Defines a collision resistant hash for the typed and structured data.

Required Methods§

source

fn digest(&self) -> Digest

Calculate a collision resistant hash for the typed and structured data.

Implementors§