fuel_merkle::sparse::in_memory

Struct MerkleTree

Source
pub struct MerkleTree { /* private fields */ }

Implementations§

Source§

impl MerkleTree

Source

pub fn new() -> Self

Source

pub fn from_set<I, D>(set: I) -> Self
where I: Iterator<Item = (MerkleTreeKey, D)>, D: AsRef<[u8]>,

Build a sparse Merkle tree from a set of key-value pairs. This is equivalent to creating an empty sparse Merkle tree and sequentially calling update for each key-value pair. This constructor is more performant than calling individual sequential updates and is the preferred approach when the key-values are known upfront. Leaves can be appended to the returned tree using update to further accumulate leaf data.

Source

pub fn root_from_set<I, D>(set: I) -> Bytes32
where I: Iterator<Item = (MerkleTreeKey, D)>, D: AsRef<[u8]>,

Calculate the sparse Merkle root from a set of key-value pairs. This is similar to constructing a new tree from a set of key-value pairs using from_set, except this method returns only the root; it does not write to storage nor return a sparse Merkle tree instance. It is equivalent to calling from_set(..), followed by root(), but does not incur the overhead of storage writes. This can be helpful when we know all the key-values in the set upfront and we will not need to update the set in the future.

Source

pub fn nodes_from_set<I, D>(set: I) -> (Bytes32, Vec<(Bytes32, Primitive)>)
where I: Iterator<Item = (MerkleTreeKey, D)>, D: AsRef<[u8]>,

Calculate the sparse Merkle root as well as all nodes in the Merkle tree from a set of key-value pairs. This is similar to constructing a new tree from a set of key-value pairs using from_set, except this method returns only the root and the list of leaves and nodes in the tree; it does not return a sparse Merkle tree instance. This can be helpful when we know all the key-values in the set upfront and we need to defer storage writes, such as expensive database inserts, for batch operations later in the process.

Source

pub fn update(&mut self, key: MerkleTreeKey, data: &[u8])

Source

pub fn delete(&mut self, key: MerkleTreeKey)

Source

pub fn root(&self) -> Bytes32

Source

pub fn generate_proof(&self, key: &MerkleTreeKey) -> Option<Proof>

Trait Implementations§

Source§

impl Debug for MerkleTree

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for MerkleTree

Source§

fn default() -> Self

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

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> StorageAsMut for T

Source§

fn storage<Type>(&mut self) -> StorageMut<'_, Self, Type>
where Type: Mappable,

Source§

fn storage_as_mut<Type>(&mut self) -> StorageMut<'_, Self, Type>
where Type: Mappable,

Source§

impl<T> StorageAsRef for T

Source§

fn storage<Type>(&self) -> StorageRef<'_, Self, Type>
where Type: Mappable,

Source§

fn storage_as_ref<Type>(&self) -> StorageRef<'_, Self, Type>
where Type: Mappable,

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.