#[non_exhaustive]pub struct ListTablesOptionalParams {
    pub limit: Option<i64>,
    pub offset: Option<i64>,
    pub sort: Option<ReferenceTableSortType>,
    pub filter_status: Option<String>,
    pub filter_table_name_exact: Option<String>,
    pub filter_table_name_contains: Option<String>,
}Expand description
ListTablesOptionalParams is a struct for passing parameters to the method ReferenceTablesAPI::list_tables
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.limit: Option<i64>Number of tables to return.
offset: Option<i64>Number of tables to skip for pagination.
sort: Option<ReferenceTableSortType>Sort field and direction. Use field name for ascending, prefix with “-” for descending.
filter_status: Option<String>Filter by table status.
filter_table_name_exact: Option<String>Filter by exact table name match.
filter_table_name_contains: Option<String>Filter by table name containing substring.
Implementations§
Source§impl ListTablesOptionalParams
 
impl ListTablesOptionalParams
Sourcepub fn sort(self, value: ReferenceTableSortType) -> Self
 
pub fn sort(self, value: ReferenceTableSortType) -> Self
Sort field and direction. Use field name for ascending, prefix with “-” for descending.
Sourcepub fn filter_status(self, value: String) -> Self
 
pub fn filter_status(self, value: String) -> Self
Filter by table status.
Sourcepub fn filter_table_name_exact(self, value: String) -> Self
 
pub fn filter_table_name_exact(self, value: String) -> Self
Filter by exact table name match.
Sourcepub fn filter_table_name_contains(self, value: String) -> Self
 
pub fn filter_table_name_contains(self, value: String) -> Self
Filter by table name containing substring.
Trait Implementations§
Source§impl Clone for ListTablesOptionalParams
 
impl Clone for ListTablesOptionalParams
Source§fn clone(&self) -> ListTablesOptionalParams
 
fn clone(&self) -> ListTablesOptionalParams
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 ListTablesOptionalParams
 
impl Debug for ListTablesOptionalParams
Source§impl Default for ListTablesOptionalParams
 
impl Default for ListTablesOptionalParams
Source§fn default() -> ListTablesOptionalParams
 
fn default() -> ListTablesOptionalParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListTablesOptionalParams
impl RefUnwindSafe for ListTablesOptionalParams
impl Send for ListTablesOptionalParams
impl Sync for ListTablesOptionalParams
impl Unpin for ListTablesOptionalParams
impl UnwindSafe for ListTablesOptionalParams
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