Struct gapi_grpc::google::bigtable::admin::v2::ListTablesRequest[][src]

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

Request message for [google.bigtable.admin.v2.BigtableTableAdmin.ListTables][google.bigtable.admin.v2.BigtableTableAdmin.ListTables]

Fields

parent: String

Required. The unique name of the instance for which tables should be listed. Values are of the form projects/{project}/instances/{instance}.

view: i32

The view to be applied to the returned tables’ fields. Only NAME_ONLY view (default) and REPLICATION_VIEW are supported.

page_size: i32

Maximum number of results per page.

A page_size of zero lets the server choose the number of items to return. A page_size which is strictly positive will return at most that many items. A negative page_size will cause an error.

Following the first request, subsequent paginated calls are not required to pass a page_size. If a page_size is set in subsequent calls, it must match the page_size given in the first request.

page_token: String

The value of next_page_token returned by a previous call.

Implementations

impl ListTablesRequest[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 ListTablesRequest[src]

impl Debug for ListTablesRequest[src]

impl Default for ListTablesRequest[src]

impl Message for ListTablesRequest[src]

impl PartialEq<ListTablesRequest> for ListTablesRequest[src]

impl StructuralPartialEq for ListTablesRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ListTablesRequest

impl Send for ListTablesRequest

impl Sync for ListTablesRequest

impl Unpin for ListTablesRequest

impl UnwindSafe for ListTablesRequest

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]