Struct triedb::gc::TrieCollection[][src]

pub struct TrieCollection<D: DatabaseMut, C: ItemCounter> { /* fields omitted */ }

Implementations

impl<D: DatabaseMut, C: ItemCounter> TrieCollection<D, C>[src]

pub fn new(database: D, counter: C) -> Self[src]

pub fn trie_for(&self, root: H256) -> DatabaseTrieMut<'_, D>[src]

pub fn apply(
    &mut self,
    DatabaseTrieMutPatch { root: root, change: change }: DatabaseTrieMutPatch
) -> H256
[src]

Auto Trait Implementations

impl<D, C> RefUnwindSafe for TrieCollection<D, C> where
    C: RefUnwindSafe,
    D: RefUnwindSafe

impl<D, C> Send for TrieCollection<D, C> where
    C: Send,
    D: Send

impl<D, C> Sync for TrieCollection<D, C> where
    C: Sync,
    D: Sync

impl<D, C> Unpin for TrieCollection<D, C> where
    C: Unpin,
    D: Unpin

impl<D, C> UnwindSafe for TrieCollection<D, C> where
    C: UnwindSafe,
    D: UnwindSafe

Blanket Implementations

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

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

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

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

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

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

type Output = T

Should always be Self

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<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]