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