pub struct ListTablesOptions {
pub limit: Option<u32>,
pub offset: Option<i64>,
}Expand description
Options for listing tables
Fields§
§limit: Option<u32>Maximum number of results
offset: Option<i64>Pagination offset
Implementations§
Source§impl ListTablesOptions
impl ListTablesOptions
pub fn to_query_string(&self) -> String
Trait Implementations§
Source§impl Clone for ListTablesOptions
impl Clone for ListTablesOptions
Source§fn clone(&self) -> ListTablesOptions
fn clone(&self) -> ListTablesOptions
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 ListTablesOptions
impl Debug for ListTablesOptions
Source§impl Default for ListTablesOptions
impl Default for ListTablesOptions
Source§fn default() -> ListTablesOptions
fn default() -> ListTablesOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListTablesOptions
impl RefUnwindSafe for ListTablesOptions
impl Send for ListTablesOptions
impl Sync for ListTablesOptions
impl Unpin for ListTablesOptions
impl UnwindSafe for ListTablesOptions
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