[][src]Struct deezer::models::AlbumTrack

pub struct AlbumTrack {
    pub id: u64,
    pub readable: bool,
    pub title: String,
    pub title_short: String,
    pub title_version: String,
    pub link: String,
    pub duration_in_seconds: u64,
    pub rank: u64,
    pub explicit_lyrics: bool,
    pub preview: String,
    pub artist: AlbumTrackArtist,
}

Subset of Track.

Use get_full() for the full Track.

Fields

id: u64

The track's Deezer id

readable: bool

True if the track is readable in the player for the current user

title: String

The track's full title

title_short: String

The track's short title

title_version: String

The track 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

explicit_lyrics: bool

Whether the track contains explicit lyrics

preview: String

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

artist: AlbumTrackArtist

AlbumTrackArtist object

Implementations

impl AlbumTrack[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 AlbumTrack references an existing Track.

Trait Implementations

impl Clone for AlbumTrack[src]

impl Debug for AlbumTrack[src]

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

impl Serialize for AlbumTrack[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.