pub struct CollectionListRequestBuilder<'a> {
pub client: &'a Client<Auth>,
pub filter: Option<String>,
pub sort: Option<String>,
pub per_page: i32,
pub page: i32,
}Fields§
§client: &'a Client<Auth>§filter: Option<String>§sort: Option<String>§per_page: i32§page: i32Implementations§
Source§impl<'a> CollectionListRequestBuilder<'a>
impl<'a> CollectionListRequestBuilder<'a>
Trait Implementations§
Source§impl<'a> Clone for CollectionListRequestBuilder<'a>
impl<'a> Clone for CollectionListRequestBuilder<'a>
Source§fn clone(&self) -> CollectionListRequestBuilder<'a>
fn clone(&self) -> CollectionListRequestBuilder<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<'a> Freeze for CollectionListRequestBuilder<'a>
impl<'a> RefUnwindSafe for CollectionListRequestBuilder<'a>
impl<'a> Send for CollectionListRequestBuilder<'a>
impl<'a> Sync for CollectionListRequestBuilder<'a>
impl<'a> Unpin for CollectionListRequestBuilder<'a>
impl<'a> UnsafeUnpin for CollectionListRequestBuilder<'a>
impl<'a> UnwindSafe for CollectionListRequestBuilder<'a>
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