Trait commit_verify::merkle::MerkleLeaves
source · pub trait MerkleLeaves {
type Leaf: CommitmentId<Id = MerkleNode>;
type LeafIter<'tmp>: ExactSizeIterator<Item = Self::Leaf>
where Self: 'tmp;
// Required method
fn merkle_leaves(&self) -> Self::LeafIter<'_>;
}