#[non_exhaustive]pub struct ListTablesOutputBuilder { /* private fields */ }
Expand description
A builder for ListTablesOutput
.
Implementations§
source§impl ListTablesOutputBuilder
impl ListTablesOutputBuilder
sourcepub fn tables(self, input: Table) -> Self
pub fn tables(self, input: Table) -> Self
Appends an item to tables
.
To override the contents of this collection use set_tables
.
The list of tables in the workbook.
sourcepub fn set_tables(self, input: Option<Vec<Table>>) -> Self
pub fn set_tables(self, input: Option<Vec<Table>>) -> Self
The list of tables in the workbook.
sourcepub fn get_tables(&self) -> &Option<Vec<Table>>
pub fn get_tables(&self) -> &Option<Vec<Table>>
The list of tables in the workbook.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
Provides the pagination token to load the next page if there are more results matching the request. If a pagination token is not present in the response, it means that all data matching the request has been loaded.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
Provides the pagination token to load the next page if there are more results matching the request. If a pagination token is not present in the response, it means that all data matching the request has been loaded.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
Provides the pagination token to load the next page if there are more results matching the request. If a pagination token is not present in the response, it means that all data matching the request has been loaded.
sourcepub fn workbook_cursor(self, input: i64) -> Self
pub fn workbook_cursor(self, input: i64) -> Self
Indicates the cursor of the workbook at which the data returned by this request is read. Workbook cursor keeps increasing with every update and the increments are not sequential.
sourcepub fn set_workbook_cursor(self, input: Option<i64>) -> Self
pub fn set_workbook_cursor(self, input: Option<i64>) -> Self
Indicates the cursor of the workbook at which the data returned by this request is read. Workbook cursor keeps increasing with every update and the increments are not sequential.
sourcepub fn get_workbook_cursor(&self) -> &Option<i64>
pub fn get_workbook_cursor(&self) -> &Option<i64>
Indicates the cursor of the workbook at which the data returned by this request is read. Workbook cursor keeps increasing with every update and the increments are not sequential.
sourcepub fn build(self) -> Result<ListTablesOutput, BuildError>
pub fn build(self) -> Result<ListTablesOutput, BuildError>
Consumes the builder and constructs a ListTablesOutput
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for ListTablesOutputBuilder
impl Clone for ListTablesOutputBuilder
source§fn clone(&self) -> ListTablesOutputBuilder
fn clone(&self) -> ListTablesOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListTablesOutputBuilder
impl Debug for ListTablesOutputBuilder
source§impl Default for ListTablesOutputBuilder
impl Default for ListTablesOutputBuilder
source§fn default() -> ListTablesOutputBuilder
fn default() -> ListTablesOutputBuilder
source§impl PartialEq for ListTablesOutputBuilder
impl PartialEq for ListTablesOutputBuilder
source§fn eq(&self, other: &ListTablesOutputBuilder) -> bool
fn eq(&self, other: &ListTablesOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.