[][src]Struct etcdv3client::pb::SnapshotResponse

pub struct SnapshotResponse {
    pub header: Option<ResponseHeader>,
    pub remaining_bytes: u64,
    pub blob: Vec<u8>,
}

Fields

header: Option<ResponseHeader>

header has the current key-value store information. The first header in the snapshot stream indicates the point in time of the snapshot.

remaining_bytes: u64

remaining_bytes is the number of blob bytes to be sent after this message

blob: Vec<u8>

blob contains the next chunk of the snapshot in the snapshot stream.

Trait Implementations

impl Clone for SnapshotResponse[src]

impl Default for SnapshotResponse[src]

impl PartialEq<SnapshotResponse> for SnapshotResponse[src]

impl Debug for SnapshotResponse[src]

impl StructuralPartialEq for SnapshotResponse[src]

impl Message for SnapshotResponse[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

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<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> IntoRequest<T> for T[src]