[][src]Struct deezer::models::artist::Artist

pub struct Artist {
    pub id: u64,
    pub name: String,
    pub link: String,
    pub share_link: String,
    pub picture: String,
    pub picture_small: String,
    pub picture_medium: String,
    pub picture_big: String,
    pub picture_xl: String,
    pub nb_album: u64,
    pub nb_fan: u64,
    pub has_radio: bool,
    pub tracklist: String,
}

Contains all the information provided for an Artist.

Examples

You can query an artist by id via the DeezerObject::get() method:

let artist = Artist::get(27).await?.unwrap();

Or you can use DeezerClient::artist():

let deezer = DeezerClient::new();

let artist = deezer.artist(27).await?.unwrap();

Fields

id: u64

The artist's Deezer id

name: String

The artist's name

link: String

The url of the artist on Deezer

share_link: String

The share link of the artist on Deezer

picture: String

The url of the artist picture.

picture_small: String

The url of the artist picture in size small

picture_medium: String

The url of the artist picture in size medium

picture_big: String

The url of the artist picture in size big

picture_xl: String

The url of the artist picture in size xl

nb_album: u64

The number of artist's albums

nb_fan: u64

The number of artist's fans

has_radio: bool

True if the artist has a smartradio

tracklist: String

API Link to the top of this artist

Trait Implementations

impl Debug for Artist[src]

impl DeezerObject for Artist[src]

impl<'de> Deserialize<'de> for Artist[src]

impl Serialize for Artist[src]

Auto Trait Implementations

impl RefUnwindSafe for Artist

impl Send for Artist

impl Sync for Artist

impl Unpin for Artist

impl UnwindSafe for Artist

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.