pub struct Artist {
pub id: u64,
pub name: String,
pub namevariations: Option<Vec<String>>,
pub profile: Option<String>,
pub resource_url: String,
pub releases_url: Option<String>,
pub uri: Option<String>,
pub urls: Option<Vec<String>>,
pub data_quality: Option<String>,
pub images: Option<Vec<Image>>,
pub members: Option<Vec<ArtistMember>>,
pub extra: ExtraFields,
}Fields§
§id: u64§name: String§namevariations: Option<Vec<String>>§profile: Option<String>§resource_url: String§releases_url: Option<String>§uri: Option<String>§urls: Option<Vec<String>>§data_quality: Option<String>§images: Option<Vec<Image>>§members: Option<Vec<ArtistMember>>§extra: ExtraFieldsTrait Implementations§
Source§impl<'de> Deserialize<'de> for Artist
impl<'de> Deserialize<'de> for Artist
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 Artist
impl RefUnwindSafe for Artist
impl Send for Artist
impl Sync for Artist
impl Unpin for Artist
impl UnsafeUnpin for Artist
impl UnwindSafe for Artist
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