pub struct MasterVersionsParams {
pub master_id: isize,
pub page: Option<usize>,
pub per_page: Option<usize>,
pub format: Option<String>,
pub label: Option<String>,
pub released: Option<u16>,
pub country: Option<String>,
pub sort: Option<MasterVersionsSort>,
pub sort_order: Option<SortOrder>,
}
Fields§
§master_id: isize
§page: Option<usize>
§per_page: Option<usize>
§format: Option<String>
Filter by format, e.g. “Vinyl”
label: Option<String>
Filter by label
released: Option<u16>
Filter by year released,
country: Option<String>
Filter by country of release
sort: Option<MasterVersionsSort>
§sort_order: Option<SortOrder>
Trait Implementations§
Source§impl Clone for MasterVersionsParams
impl Clone for MasterVersionsParams
Source§fn clone(&self) -> MasterVersionsParams
fn clone(&self) -> MasterVersionsParams
Returns a copy 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 MasterVersionsParams
impl Debug for MasterVersionsParams
Source§impl Default for MasterVersionsParams
impl Default for MasterVersionsParams
Source§fn default() -> MasterVersionsParams
fn default() -> MasterVersionsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for MasterVersionsParams
impl RefUnwindSafe for MasterVersionsParams
impl Send for MasterVersionsParams
impl Sync for MasterVersionsParams
impl Unpin for MasterVersionsParams
impl UnwindSafe for MasterVersionsParams
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