Trait smtree::traits::ProofExtractable[][src]

pub trait ProofExtractable {
    type ProofNode;
    fn get_proof_node(&self) -> Self::ProofNode;
}
Expand description

Trait for extracting a node with necessary information in Merkle proofs from a tree node.

Associated Types

The type of a node with necessary information in Merkle proofs.

Required methods

Extracting a proof node from a tree node.

Implementors