Struct discogs_api::endpoints::MasterVersionsParams
source · 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 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