pub struct WantlistBasicInformation {
pub resource_url: String,
pub id: u64,
pub formats: Option<Vec<Format>>,
pub thumb: Option<String>,
pub cover_image: Option<String>,
pub title: String,
pub labels: Option<Vec<LabelReference>>,
pub year: Option<i32>,
pub artists: Option<Vec<ArtistCredit>>,
pub genres: Option<Vec<String>>,
pub styles: Option<Vec<String>>,
pub extra: ExtraFields,
}Fields§
§resource_url: String§id: u64§formats: Option<Vec<Format>>§thumb: Option<String>§cover_image: Option<String>§title: String§labels: Option<Vec<LabelReference>>§year: Option<i32>§artists: Option<Vec<ArtistCredit>>§genres: Option<Vec<String>>§styles: Option<Vec<String>>§extra: ExtraFieldsTrait Implementations§
Source§impl Clone for WantlistBasicInformation
impl Clone for WantlistBasicInformation
Source§fn clone(&self) -> WantlistBasicInformation
fn clone(&self) -> WantlistBasicInformation
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 Debug for WantlistBasicInformation
impl Debug for WantlistBasicInformation
Source§impl<'de> Deserialize<'de> for WantlistBasicInformation
impl<'de> Deserialize<'de> for WantlistBasicInformation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for WantlistBasicInformation
impl RefUnwindSafe for WantlistBasicInformation
impl Send for WantlistBasicInformation
impl Sync for WantlistBasicInformation
impl Unpin for WantlistBasicInformation
impl UnsafeUnpin for WantlistBasicInformation
impl UnwindSafe for WantlistBasicInformation
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