[][src]Struct rspotify::model::track::FullTrack

pub struct FullTrack {
    pub album: SimplifiedAlbum,
    pub artists: Vec<SimplifiedArtist>,
    pub available_markets: Vec<String>,
    pub disc_number: i32,
    pub duration_ms: u32,
    pub explicit: bool,
    pub external_ids: HashMap<String, String>,
    pub external_urls: HashMap<String, String>,
    pub href: Option<String>,
    pub id: Option<String>,
    pub is_local: bool,
    pub is_playable: Option<bool>,
    pub linked_from: Option<TrackLink>,
    pub restrictions: Option<Restrictions>,
    pub name: String,
    pub popularity: u32,
    pub preview_url: Option<String>,
    pub track_number: u32,
    pub _type: Type,
    pub uri: String,
}

Fields

album: SimplifiedAlbumartists: Vec<SimplifiedArtist>available_markets: Vec<String>disc_number: i32duration_ms: u32explicit: boolexternal_ids: HashMap<String, String>external_urls: HashMap<String, String>href: Option<String>id: Option<String>is_local: boolis_playable: Option<bool>linked_from: Option<TrackLink>restrictions: Option<Restrictions>name: Stringpopularity: u32preview_url: Option<String>track_number: u32_type: Typeuri: String

Trait Implementations

impl Clone for FullTrack[src]

impl Debug for FullTrack[src]

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

impl Serialize for FullTrack[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: Deserialize<'de>, 
[src]

impl<T> From<T> 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.