Struct vapcore_snapshot::StateRebuilder[][src]

pub struct StateRebuilder { /* fields omitted */ }

Used to rebuild the state trie piece by piece.

Implementations

impl StateRebuilder[src]

pub fn new(db: Arc<dyn KeyValueDB>, pruning: Algorithm) -> Self[src]

Create a new state rebuilder to write into the given backing DB.

pub fn feed(
    &mut self,
    chunk: &[u8],
    flag: &AtomicBool
) -> Result<(), VapcoreError>
[src]

Feed an uncompressed state chunk into the rebuilder.

pub fn finalize(
    self,
    era: u64,
    id: H256
) -> Result<Box<dyn JournalDB>, VapcoreError>
[src]

Finalize the restoration. Check for accounts missing code and make a dummy journal entry. Once all chunks have been fed, there should be nothing missing.

pub fn state_root(&self) -> H256[src]

Get the state root of the rebuilder.

Auto Trait Implementations

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> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

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>,