pub struct SearchSetsParams {
pub name: Option<String>,
pub set_type: Option<String>,
pub block: Option<String>,
pub release_year: Option<i32>,
pub limit: Option<usize>,
pub offset: Option<usize>,
}Expand description
Parameters for the set search method.
Fields§
§name: Option<String>§set_type: Option<String>§block: Option<String>§release_year: Option<i32>§limit: Option<usize>§offset: Option<usize>Trait Implementations§
Source§impl Clone for SearchSetsParams
impl Clone for SearchSetsParams
Source§fn clone(&self) -> SearchSetsParams
fn clone(&self) -> SearchSetsParams
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 moreSource§impl Debug for SearchSetsParams
impl Debug for SearchSetsParams
Source§impl Default for SearchSetsParams
impl Default for SearchSetsParams
Source§fn default() -> SearchSetsParams
fn default() -> SearchSetsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SearchSetsParams
impl RefUnwindSafe for SearchSetsParams
impl Send for SearchSetsParams
impl Sync for SearchSetsParams
impl Unpin for SearchSetsParams
impl UnsafeUnpin for SearchSetsParams
impl UnwindSafe for SearchSetsParams
Blanket Implementations§
impl<T> Allocation for T
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