pub trait AsHashTree {
    fn root_hash(&self) -> Hash;
    fn as_hash_tree(&self) -> HashTree<'_>;
}

Required Methods

Returns the root hash of the tree without constructing it. Must be equivalent to as_hash_tree().reconstruct().

Constructs a hash tree corresponding to the data.

Implementations on Foreign Types

Implementors