[][src]Struct bm::MerkleEmpty

pub struct MerkleEmpty<DB: MerkleDB> { /* fields omitted */ }

Merkle structure storing hashes of empty roots.

Methods

impl<DB: MerkleDB> MerkleEmpty<DB>[src]

pub fn extend(&mut self, db: &mut DB)[src]

Extend the current empty structure with a new depth.

pub fn shrink(&mut self, db: &mut DB)[src]

Shrink the current empty structure.

pub fn root(&self) -> ValueOf<DB>[src]

Root of the current depth.

pub fn drop(self, db: &mut DB)[src]

Drop the merkle tree.

pub fn leak(self) -> ValueOf<DB>[src]

Leak the merkle tree.

pub fn from_leaked(root: ValueOf<DB>) -> Self[src]

Initialize this merkle tree from a previously leaked one.

pub fn new() -> Self[src]

Initialize a new merkle empty tree.

Auto Trait Implementations

impl<DB> Send for MerkleEmpty<DB> where
    <DB as MerkleDB>::Digest: Digest,
    <<DB as MerkleDB>::Digest as Digest>::OutputSize: ArrayLength<u8>,
    <DB as MerkleDB>::Value: Send

impl<DB> Sync for MerkleEmpty<DB> where
    <DB as MerkleDB>::Digest: Digest,
    <<DB as MerkleDB>::Digest as Digest>::OutputSize: ArrayLength<u8>,
    <DB as MerkleDB>::Value: Sync

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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> Same for T[src]

type Output = T

Should always be Self