pub struct Artist {
pub name: String,
pub id: isize,
pub resource_url: String,
pub uri: String,
pub releases_url: String,
pub images: Vec<Image>,
pub realname: Option<String>,
pub profile: String,
pub urls: Vec<String>,
pub namevariations: Option<Vec<String>>,
pub members: Option<Vec<Member>>,
pub data_quality: String,
}
Fields§
§name: String
§id: isize
§resource_url: String
§uri: String
§releases_url: String
§images: Vec<Image>
§realname: Option<String>
§profile: String
§urls: Vec<String>
§namevariations: Option<Vec<String>>
§members: Option<Vec<Member>>
§data_quality: String
Trait 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 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