pub struct PoseidonTree<L, A, const DEPTH: usize> where
    L: PoseidonLeaf,
    A: PoseidonTreeAnnotation<L>, 
{ /* private fields */ }
Expand description

Represents a Merkle Tree with a given depth that will be calculated using the Poseidon Hash technique.

Implementations

Creates a new poseidon tree

Append a leaf to the tree. Return the index of the appended leaf.

Fetch, remove and return the last inserted leaf, if present.

Fetch a leaf on a provided index.

Return a full merkle opening for this poseidon tree for a given index.

Return the current root/state of the tree.

Provides an iterator over the leaves of the tree from a provided starting point. To iterate the entire tree, simply provide 0 as start.

Provides an iterator over the leaves of the tree which have been previously annotated via a custom Walker passed as argument.

Note

This is only useful if annotate the tree is going to make the iteration perform sub-linearly.

Trait Implementations

Performs the conversion.

Performs the conversion.

Write the encoded value as bytes to a Sink

Return the decoded value from bytes in a Source

Returns the number of bytes needed to encode this value

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

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

Encode Self into a buffer

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Return a reference to the key of the leaf type

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

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)

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.