Enum exonum::storage::proof_map_index::ProofNode [] [src]

pub enum ProofNode<V> {
    Branch(BranchProofNode<V>),
    Leaf(V),
}

An enum that represents a node of the map proof.

Variants

A branch of map proof.

A leaf of map proof with the value of the requested key.

Trait Implementations

impl<V: Serialize> Serialize for ProofNode<V>
[src]

Serialize this value into the given Serde serializer. Read more

impl<V: Debug> Debug for ProofNode<V>
[src]

Formats the value using the given formatter.