[][src]Struct actix_raft::storage::InstallSnapshotChunk

pub struct InstallSnapshotChunk {
    pub offset: u64,
    pub data: Vec<u8>,
    pub done: bool,
    pub cb: Sender<()>,
}

A chunk of snapshot data.

Fields

offset: u64

The byte offset where chunk is positioned in the snapshot file.

data: Vec<u8>

The raw bytes of the snapshot chunk, starting at offset.

done: bool

Will be true if this is the last chunk in the snapshot.

cb: Sender<()>

A callback channel to indicate when the chunk has been successfully written.

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