[][src]Struct actix_raft::storage::CreateSnapshot

pub struct CreateSnapshot<E: AppError> {
    pub through: u64,
    // some fields omitted
}

A request from Raft to have a new snapshot created which covers the current breadth of the log.

See the storage chapter of the guide for details on how to implement this handler.

Fields

through: u64

The new snapshot should start from entry 0 and should cover all entries through the index specified here, inclusive.

Methods

impl<E: AppError> CreateSnapshot<E>[src]

pub fn new(through: u64) -> Self[src]

Trait Implementations

impl<E: AppError> Message for CreateSnapshot<E>[src]

type Result = Result<CurrentSnapshotData, E>

The type of value that this message will resolved with if it is successful. Read more

Auto Trait Implementations

impl<E> RefUnwindSafe for CreateSnapshot<E> where
    E: RefUnwindSafe

impl<E> Send for CreateSnapshot<E>

impl<E> Sync for CreateSnapshot<E>

impl<E> Unpin for CreateSnapshot<E> where
    E: Unpin

impl<E> UnwindSafe for CreateSnapshot<E> where
    E: 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, 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>,