pub struct Release {Show 21 fields
pub id: isize,
pub resource_url: String,
pub uri: Option<String>,
pub artists: Option<Vec<NamedResource>>,
pub artist: Option<String>,
pub labels: Option<Vec<NamedResource>>,
pub companies: Option<Vec<NamedResource>>,
pub master_id: Option<isize>,
pub master_url: Option<String>,
pub title: String,
pub country: Option<String>,
pub released: Option<String>,
pub released_formatted: Option<String>,
pub notes: Option<String>,
pub videos: Option<Vec<Video>>,
pub genres: Option<Vec<String>>,
pub styles: Option<Vec<String>>,
pub tracklist: Option<Vec<Track>>,
pub images: Option<Vec<Image>>,
pub thumb: String,
pub stats: Option<MasterVersionsItemStatsCommAndUser>,
}
Fields§
§id: isize
§resource_url: String
§uri: Option<String>
§artists: Option<Vec<NamedResource>>
§artist: Option<String>
§labels: Option<Vec<NamedResource>>
§companies: Option<Vec<NamedResource>>
§master_id: Option<isize>
§master_url: Option<String>
§title: String
§country: Option<String>
§released: Option<String>
§released_formatted: Option<String>
§notes: Option<String>
§videos: Option<Vec<Video>>
§genres: Option<Vec<String>>
§styles: Option<Vec<String>>
§tracklist: Option<Vec<Track>>
§images: Option<Vec<Image>>
§thumb: String
An empty string when unauthenticated.
stats: Option<MasterVersionsItemStatsCommAndUser>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Release
impl<'de> Deserialize<'de> for Release
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 Release
impl RefUnwindSafe for Release
impl Send for Release
impl Sync for Release
impl Unpin for Release
impl UnwindSafe for Release
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