[][src]Struct actix_raft::storage::GetCurrentSnapshot

pub struct GetCurrentSnapshot<E: AppError> { /* fields omitted */ }

A request from Raft to get metadata of the current snapshot.

implementation algorithm

Implementation for this type's handler should be quite simple. Check the configured snapshot directory for any snapshot files. A proper implementation will only ever have one active snapshot, though another may exist while it is being created. As such, it is recommended to use a file naming pattern which will allow for easily distinguishing between the current live snapshot, and any new snapshot which is being created.

Methods

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

pub fn new() -> Self[src]

Trait Implementations

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

type Result = Result<Option<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 GetCurrentSnapshot<E> where
    E: RefUnwindSafe

impl<E> Send for GetCurrentSnapshot<E>

impl<E> Sync for GetCurrentSnapshot<E>

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

impl<E> UnwindSafe for GetCurrentSnapshot<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>,