pub struct SearchPublicCollectionsRequest {
pub search: Option<String>,
pub order_by: Option<String>,
pub sort: Option<SortOrder>,
pub exclude_themes: Option<u8>,
}Fields§
§search: Option<String>Optional search string to filter collections by name.
order_by: Option<String>Field name to order results by.
sort: Option<SortOrder>Sort direction for the results.
exclude_themes: Option<u8>If set, excludes theme/featured collections from results.
Implementations§
Trait Implementations§
Source§impl Clone for SearchPublicCollectionsRequest
impl Clone for SearchPublicCollectionsRequest
Source§fn clone(&self) -> SearchPublicCollectionsRequest
fn clone(&self) -> SearchPublicCollectionsRequest
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 Default for SearchPublicCollectionsRequest
impl Default for SearchPublicCollectionsRequest
Source§fn default() -> SearchPublicCollectionsRequest
fn default() -> SearchPublicCollectionsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for SearchPublicCollectionsRequest
impl PartialEq for SearchPublicCollectionsRequest
Source§fn eq(&self, other: &SearchPublicCollectionsRequest) -> bool
fn eq(&self, other: &SearchPublicCollectionsRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SearchPublicCollectionsRequest
Auto Trait Implementations§
impl Freeze for SearchPublicCollectionsRequest
impl RefUnwindSafe for SearchPublicCollectionsRequest
impl Send for SearchPublicCollectionsRequest
impl Sync for SearchPublicCollectionsRequest
impl Unpin for SearchPublicCollectionsRequest
impl UnsafeUnpin for SearchPublicCollectionsRequest
impl UnwindSafe for SearchPublicCollectionsRequest
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