[][src]Struct transact::state::merkle::MerkleRadixTree

pub struct MerkleRadixTree { /* fields omitted */ }

Merkle Database

Methods

impl MerkleRadixTree[src]

pub fn new(
    db: Box<dyn Database>,
    merkle_root: Option<&str>
) -> Result<Self, StateDatabaseError>
[src]

Constructs a new MerkleRadixTree, backed by a given Database

An optional starting merkle root may be provided.

pub fn prune(
    db: &dyn Database,
    merkle_root: &str
) -> Result<Vec<String>, StateDatabaseError>
[src]

Prunes nodes that are no longer needed under a given state root Returns a list of addresses that were deleted

pub fn get_merkle_root(&self) -> String[src]

Returns the current merkle root for this MerkleRadixTree

pub fn set_merkle_root<S: Into<String>>(
    &mut self,
    merkle_root: S
) -> Result<(), StateDatabaseError>
[src]

Sets the current merkle root for this MerkleRadixTree

pub fn update(
    &self,
    state_changes: &[StateChange],
    is_virtual: bool
) -> Result<String, StateDatabaseError>
[src]

Updates the tree with multiple changes. Applies both set and deletes, as given.

If the flag is_virtual is set, the values are not written to the underlying database.

Returns a Result with the new root hash.

pub fn get_value(
    &self,
    address: &str
) -> Result<Option<Vec<u8>>, StateDatabaseError>
[src]

pub fn contains(&self, address: &str) -> Result<bool, StateDatabaseError>[src]

pub fn leaves(
    &self,
    prefix: Option<&str>
) -> Result<Box<dyn Iterator<Item = Result<(String, Vec<u8>), StateDatabaseError>>>, StateDatabaseError>
[src]

Trait Implementations

impl Clone for MerkleRadixTree[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> SafeBorrow<T> for T where
    T: ?Sized

impl<'a, T> DefaultFeatures<'a> for T where
    T: 'a + Send + Sync + Clone

impl<'a, T> NonSyncFeatures<'a> for T where
    T: 'a + Clone

impl<T> Same<T> for T

type Output = T

Should always be Self