Struct common_types::snapshot::Progress[][src]

pub struct Progress {
    pub blocks: u64,
    pub done: bool,
    pub abort: bool,
    // some fields omitted
}

A progress indicator for snapshots.

Fields

blocks: u64

Number of blocks processed so far

done: bool

Signals that the snapshotting process is completed

abort: bool

Signal snapshotting process to abort

Implementations

impl Progress[src]

pub fn new() -> Progress[src]

Create a new progress tracker.

pub fn accounts(&self) -> u64[src]

Get the number of accounts snapshotted thus far.

pub fn blocks(&self) -> u64[src]

Get the number of blocks snapshotted thus far.

pub fn bytes(&self) -> u64[src]

Get the written size of the snapshot in bytes.

pub fn done(&self) -> bool[src]

Whether the snapshot is complete.

pub fn rate(&self) -> (f64, f64)[src]

Return the progress rate over the last tick (i.e. since last update).

pub fn update(&mut self, accounts_delta: u64, bytes_delta: u64)[src]

Update state progress counters and set the last tick.

Trait Implementations

impl Debug for Progress[src]

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> MaybeDebug for T where
    T: Debug

impl<T> MaybeDebug for T where
    T: Debug

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