pub struct Artist {
pub api_path: String,
pub header_image_url: String,
pub id: u32,
pub image_url: String,
pub index_character: Option<char>,
pub is_meme_verified: bool,
pub is_verified: bool,
pub name: String,
pub slug: Option<String>,
pub url: String,
pub iq: Option<u32>,
}Fields§
§api_path: StringPath of the API.
header_image_url: StringArtist header image.
id: u32Artist id.
image_url: StringArtist image.
index_character: Option<char>First letter of the artist name.
Only with
user-corelevel token
is_meme_verified: boolIs this artist a meme?
is_verified: boolIf this artist is verified.
name: StringName of the artist.
slug: Option<String>Only with
user-corelevel token
url: StringUrl of the artist page.
iq: Option<u32>How much iq this artist has.
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 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