pub struct SearchSetsRequest {
pub query: Option<String>,
pub page: Option<u16>,
pub page_size: Option<u8>,
pub order_by: Option<String>,
}
Fields§
§query: Option<String>
The search query.
page: Option<u16>
The page of data to access.
page_size: Option<u8>
The maximum amount of sets to return. Max of 250.
order_by: Option<String>
The field(s) to order the results by.
Implementations§
Auto Trait Implementations§
impl Freeze for SearchSetsRequest
impl RefUnwindSafe for SearchSetsRequest
impl Send for SearchSetsRequest
impl Sync for SearchSetsRequest
impl Unpin for SearchSetsRequest
impl UnwindSafe for SearchSetsRequest
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