[][src]Struct etcdv3client::pb::ResponseHeader

pub struct ResponseHeader {
    pub cluster_id: u64,
    pub member_id: u64,
    pub revision: i64,
    pub raft_term: u64,
}

Fields

cluster_id: u64

cluster_id is the ID of the cluster which sent the response.

member_id: u64

member_id is the ID of the member which sent the response.

revision: i64

revision is the key-value store revision when the request was applied. For watch progress responses, the header.revision indicates progress. All future events recieved in this stream are guaranteed to have a higher revision number than the header.revision number.

raft_term: u64

raft_term is the raft term when the request was applied.

Trait Implementations

impl Clone for ResponseHeader[src]

impl Default for ResponseHeader[src]

impl PartialEq<ResponseHeader> for ResponseHeader[src]

impl Debug for ResponseHeader[src]

impl StructuralPartialEq for ResponseHeader[src]

impl Message for ResponseHeader[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]