[][src]Struct gcp_client::google::bigtable::v2::ReadRowsResponse

pub struct ReadRowsResponse {
    pub chunks: Vec<CellChunk>,
    pub last_scanned_row_key: Vec<u8>,
}

Response message for Bigtable.ReadRows.

Fields

chunks: Vec<CellChunk>

A collection of a row's contents as part of the read request.

last_scanned_row_key: Vec<u8>

Optionally the server might return the row key of the last row it has scanned. The client can use this to construct a more efficient retry request if needed: any row keys or portions of ranges less than this row key can be dropped from the request. This is primarily useful for cases where the server has read a lot of data that was filtered out since the last committed row key, allowing the client to skip that work on a retry.

Trait Implementations

impl Clone for ReadRowsResponse[src]

impl Debug for ReadRowsResponse[src]

impl Default for ReadRowsResponse[src]

impl Message for ReadRowsResponse[src]

impl PartialEq<ReadRowsResponse> for ReadRowsResponse[src]

impl StructuralPartialEq for ReadRowsResponse[src]

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> Instrument for T[src]

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

impl<T> IntoRequest<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<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]