[][src]Struct deezer::models::ChartTrack

pub struct ChartTrack {
    pub id: u64,
    pub title: String,
    pub title_short: String,
    pub title_version: String,
    pub link: String,
    pub duration_in_seconds: u64,
    pub rank: u64,
    pub has_explicit_lyrics: bool,
    pub preview_url: Option<String>,
    pub position: u64,
    pub artist: ChartTrackArtist,
    pub album: ChartTrackAlbum,
}

Subset of Track.

Use get_full() for the full Track.

Fields

id: u64

The track's Deezer id

title: String

The track's full title

title_short: String

The track's short title

title_version: String

The track's version

link: String

The url of the track on Deezer

duration_in_seconds: u64

The track's duration in seconds

rank: u64

The track's Deezer rank

has_explicit_lyrics: bool

Whether the track contains explicit lyrics

preview_url: Option<String>

The url of track's preview file. This file contains the first 30 seconds of the track

position: u64

The position of the track in the charts

artist: ChartTrackArtist

Returns an ChartTrackArtist object of the artist this track belongs to

album: ChartTrackAlbum

Returns an ChartTrackAlbum object of the album this track belongs to

Implementations

impl ChartTrack[src]

pub async fn get_full<'_>(&'_ self) -> Result<Track, DeezerError>[src]

Returns the corresponding Track.

Panics

Can panic when the track api returns 404 - Not Found.

This should never happen as ChartTrack references an existing Track.

Trait Implementations

impl Clone for ChartTrack[src]

impl Debug for ChartTrack[src]

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

impl Serialize for ChartTrack[src]

Auto Trait Implementations

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.