Struct diem_sdk::types::proof::accumulator::InMemoryAccumulator[][src]

pub struct InMemoryAccumulator<H> { /* fields omitted */ }
Expand description

The Accumulator implementation.

Implementations

Constructs a new accumulator with roots of existing frozen subtrees. Returns error if the number of frozen subtree roots does not match the number of leaves.

Constructs a new accumulator with given leaves.

Appends a list of new leaves to an existing accumulator. Since the accumulator is immutable, the existing one remains unchanged and a new one representing the result is returned.

Appends a list of new subtrees to the existing accumulator. This is similar to append except that the new leaves themselves are not known and they are represented by subtrees. As an example, given the following accumulator that currently has 10 leaves, the frozen subtree roots and the new subtrees are annotated below. Note that in this case subtrees[0] represents two new leaves A and B, subtrees[1] represents four new leaves C, D, E and F, subtrees[2] represents four new leaves G, H, I and J, and the last subtrees[3] represents one new leaf K.

                                                                          new_root
                                                                        /          \
                                                                      /              \
                                                                    /                  \
                                                                  /                      \
                                                                /                          \
                                                              /                              \
                                                            /                                  \
                                                          /                                      \
                                                        /                                          \
                                                      /                                              \
                                                    /                                                  \
                                                  /                                                      \
                                                /                                                          \
                                        old_root                                                            o
                                       /        \                                                          / \
                                     /            \                                                       /   placeholder
                                   /                \                                                    /
                                 /                    \                                                 /
                               /                        \                                              /
                             /                            \                                           o
                           /                                \                                        / \
                         /                                    \                                     /    \
                       /                                       o                                  /        \
frozen_subtree_roots[0]                                      /   \                              /            \
                   /   \                                    /     \                           /                \
                  /     \                                  /       \                        /                    \
                 o       o                                o         subtrees[1]  subtrees[2]                     o
                / \     / \                              / \                / \          / \                    / \
               o   o   o   o      frozen_subtree_roots[1]   subtrees[0]    o   o        o   o                  o   placeholder
              / \ / \ / \ / \                         / \           / \   / \ / \      / \ / \                / \
              o o o o o o o o                         o o           A B   C D E F      G H I J  K (subtrees[3]) placeholder

Returns the root hash of the accumulator.

Returns the set of frozen subtree roots in this accumulator

Returns the total number of leaves in this accumulator.

Returns true if this accumulator is empty and has no leaves.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Compare self to key and return true if they are equal.

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Should always be Self

Generates a hash used only for tests.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more