pub struct ListCollectionsParams {
pub name: Option<String>,
pub page: Option<u32>,
pub page_size: Option<u32>,
}Expand description
Parameters for listing collections
Fields§
§name: Option<String>Filter by collection name
page: Option<u32>Page number
page_size: Option<u32>Page size
Trait Implementations§
Source§impl Clone for ListCollectionsParams
impl Clone for ListCollectionsParams
Source§fn clone(&self) -> ListCollectionsParams
fn clone(&self) -> ListCollectionsParams
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 ListCollectionsParams
impl Debug for ListCollectionsParams
Source§impl Default for ListCollectionsParams
impl Default for ListCollectionsParams
Source§fn default() -> ListCollectionsParams
fn default() -> ListCollectionsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListCollectionsParams
impl RefUnwindSafe for ListCollectionsParams
impl Send for ListCollectionsParams
impl Sync for ListCollectionsParams
impl Unpin for ListCollectionsParams
impl UnwindSafe for ListCollectionsParams
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