Struct vapcore_snapshot::PowSnapshot[][src]

pub struct PowSnapshot {
    pub blocks: u64,
    pub max_restore_blocks: u64,
}

Snapshot creation and restoration for PoW chains. This includes blocks from the head of the chain as a loose assurance that the chain is valid.

Fields

blocks: u64

Number of blocks from the head of the chain to include in the snapshot.

max_restore_blocks: u64

Number of blocks to allow in the snapshot when restoring.

Implementations

impl PowSnapshot[src]

pub fn new(blocks: u64, max_restore_blocks: u64) -> PowSnapshot[src]

Create a new instance.

Trait Implementations

impl Clone for PowSnapshot[src]

impl Copy for PowSnapshot[src]

impl PartialEq<PowSnapshot> for PowSnapshot[src]

impl SnapshotComponents for PowSnapshot[src]

impl StructuralPartialEq for PowSnapshot[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> 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> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,