#[non_exhaustive]pub struct ListTablesResponse {
pub tables: Vec<Table>,
pub next_page_token: String,
/* private fields */
}Expand description
Response message for google.bigtable.admin.v2.BigtableTableAdmin.ListTables
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.tables: Vec<Table>The tables present in the requested instance.
next_page_token: StringSet if not all tables could be returned in a single response.
Pass this value to page_token in another request to get the next
page of results.
Implementations§
Source§impl ListTablesResponse
impl ListTablesResponse
pub fn new() -> Self
Sourcepub fn set_tables<T, V>(self, v: T) -> Self
pub fn set_tables<T, V>(self, v: T) -> Self
Sourcepub fn set_next_page_token<T: Into<String>>(self, v: T) -> Self
pub fn set_next_page_token<T: Into<String>>(self, v: T) -> Self
Sets the value of next_page_token.
§Example
ⓘ
let x = ListTablesResponse::new().set_next_page_token("example");Trait Implementations§
Source§impl Clone for ListTablesResponse
impl Clone for ListTablesResponse
Source§fn clone(&self) -> ListTablesResponse
fn clone(&self) -> ListTablesResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ListTablesResponse
impl Debug for ListTablesResponse
Source§impl Default for ListTablesResponse
impl Default for ListTablesResponse
Source§fn default() -> ListTablesResponse
fn default() -> ListTablesResponse
Returns the “default value” for a type. Read more
Source§impl Message for ListTablesResponse
impl Message for ListTablesResponse
Source§impl PartialEq for ListTablesResponse
impl PartialEq for ListTablesResponse
impl StructuralPartialEq for ListTablesResponse
Auto Trait Implementations§
impl Freeze for ListTablesResponse
impl RefUnwindSafe for ListTablesResponse
impl Send for ListTablesResponse
impl Sync for ListTablesResponse
impl Unpin for ListTablesResponse
impl UnwindSafe for ListTablesResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more