#[non_exhaustive]pub struct ListTablesOutput {
pub tables: Option<Vec<TableMember>>,
pub next_token: Option<String>,
/* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.tables: Option<Vec<TableMember>>The tables that match the request pattern.
next_token: Option<String>A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned NextToken value in the next NextToken parameter and retrying the command. If the NextToken field is empty, all response records have been retrieved for the request.
Implementations§
source§impl ListTablesOutput
impl ListTablesOutput
sourcepub fn tables(&self) -> &[TableMember]
pub fn tables(&self) -> &[TableMember]
The tables that match the request pattern.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tables.is_none().
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned NextToken value in the next NextToken parameter and retrying the command. If the NextToken field is empty, all response records have been retrieved for the request.
source§impl ListTablesOutput
impl ListTablesOutput
sourcepub fn builder() -> ListTablesOutputBuilder
pub fn builder() -> ListTablesOutputBuilder
Creates a new builder-style object to manufacture ListTablesOutput.
Trait Implementations§
source§impl Clone for ListTablesOutput
impl Clone for ListTablesOutput
source§fn clone(&self) -> ListTablesOutput
fn clone(&self) -> ListTablesOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListTablesOutput
impl Debug for ListTablesOutput
source§impl PartialEq for ListTablesOutput
impl PartialEq for ListTablesOutput
source§fn eq(&self, other: &ListTablesOutput) -> bool
fn eq(&self, other: &ListTablesOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for ListTablesOutput
impl RequestId for ListTablesOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.