pub struct ListTableSummariesBuilder { /* private fields */ }Expand description
Builder for table summaries
Implementations§
Source§impl ListTableSummariesBuilder
impl ListTableSummariesBuilder
Sourcepub fn with_schema_name_pattern(
self,
schema_name_pattern: impl Into<Option<String>>,
) -> Self
pub fn with_schema_name_pattern( self, schema_name_pattern: impl Into<Option<String>>, ) -> Self
A sql LIKE pattern (% and _) for schema names. All schemas will be returned if not set or empty.
Sourcepub fn with_table_name_pattern(
self,
table_name_pattern: impl Into<Option<String>>,
) -> Self
pub fn with_table_name_pattern( self, table_name_pattern: impl Into<Option<String>>, ) -> Self
A sql LIKE pattern (% and _) for table names. All tables will be returned if not set or empty.
Sourcepub fn with_max_results(self, max_results: impl Into<Option<i32>>) -> Self
pub fn with_max_results(self, max_results: impl Into<Option<i32>>) -> Self
The maximum number of results per page that should be returned.
Sourcepub fn with_page_token(self, page_token: impl Into<Option<String>>) -> Self
pub fn with_page_token(self, page_token: impl Into<Option<String>>) -> Self
Opaque pagination token to go to next page based on previous query.
Sourcepub fn with_include_manifest_capabilities(
self,
include_manifest_capabilities: impl Into<Option<bool>>,
) -> Self
pub fn with_include_manifest_capabilities( self, include_manifest_capabilities: impl Into<Option<bool>>, ) -> Self
Whether to include a manifest containing capabilities the table has.
Trait Implementations§
Source§impl IntoFuture for ListTableSummariesBuilder
impl IntoFuture for ListTableSummariesBuilder
Source§type Output = Result<ListTableSummariesResponse, Error>
type Output = Result<ListTableSummariesResponse, Error>
The output that the future will produce on completion.
Source§type IntoFuture = Pin<Box<dyn Future<Output = <ListTableSummariesBuilder as IntoFuture>::Output> + Send>>
type IntoFuture = Pin<Box<dyn Future<Output = <ListTableSummariesBuilder as IntoFuture>::Output> + Send>>
Which kind of future are we turning this into?
Source§fn into_future(self) -> Self::IntoFuture
fn into_future(self) -> Self::IntoFuture
Creates a future from a value. Read more
Auto Trait Implementations§
impl !RefUnwindSafe for ListTableSummariesBuilder
impl !UnwindSafe for ListTableSummariesBuilder
impl Freeze for ListTableSummariesBuilder
impl Send for ListTableSummariesBuilder
impl Sync for ListTableSummariesBuilder
impl Unpin for ListTableSummariesBuilder
impl UnsafeUnpin for ListTableSummariesBuilder
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