Struct gapi_grpc::google::area120::tables::v1alpha1::ListRowsRequest[][src]

pub struct ListRowsRequest {
    pub parent: String,
    pub page_size: i32,
    pub page_token: String,
    pub view: i32,
    pub filter: String,
}

Request message for TablesService.ListRows.

Fields

parent: String

Required. The parent table. Format: tables/{table}

page_size: i32

The maximum number of rows to return. The service may return fewer than this value.

If unspecified, at most 50 rows are returned. The maximum value is 1,000; values above 1,000 are coerced to 1,000.

page_token: String

A page token, received from a previous ListRows call. Provide this to retrieve the subsequent page.

When paginating, all other parameters provided to ListRows must match the call that provided the page token.

view: i32

Optional. Column key to use for values in the row. Defaults to user entered name.

filter: String

Optional. Raw text query to search for in rows of the table. Special characters must be escaped. Logical operators and field specific filtering not supported.

Implementations

impl ListRowsRequest[src]

pub fn view(&self) -> View[src]

Returns the enum value of view, or the default if the field is set to an invalid enum value.

pub fn set_view(&mut self, value: View)[src]

Sets view to the provided enum value.

Trait Implementations

impl Clone for ListRowsRequest[src]

impl Debug for ListRowsRequest[src]

impl Default for ListRowsRequest[src]

impl Message for ListRowsRequest[src]

impl PartialEq<ListRowsRequest> for ListRowsRequest[src]

impl StructuralPartialEq for ListRowsRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ListRowsRequest

impl Send for ListRowsRequest

impl Sync for ListRowsRequest

impl Unpin for ListRowsRequest

impl UnwindSafe for ListRowsRequest

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> 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>, 
[src]

impl<T> WithSubscriber for T[src]