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

pub struct ReadRowsRequest {
    pub table_name: String,
    pub app_profile_id: String,
    pub rows: Option<RowSet>,
    pub filter: Option<RowFilter>,
    pub rows_limit: i64,
}

Request message for Bigtable.ReadRows.

Fields

table_name: String

Required. The unique name of the table from which to read. Values are of the form projects/<project>/instances/<instance>/tables/<table>.

app_profile_id: String

This value specifies routing for replication. If not specified, the "default" application profile will be used.

rows: Option<RowSet>

The row keys and/or ranges to read. If not specified, reads from all rows.

filter: Option<RowFilter>

The filter to apply to the contents of the specified row(s). If unset, reads the entirety of each row.

rows_limit: i64

The read will terminate after committing to N rows' worth of results. The default (zero) is to return all results.

Trait Implementations

impl Clone for ReadRowsRequest[src]

impl Debug for ReadRowsRequest[src]

impl Default for ReadRowsRequest[src]

impl Message for ReadRowsRequest[src]

impl PartialEq<ReadRowsRequest> for ReadRowsRequest[src]

impl StructuralPartialEq for ReadRowsRequest[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]