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

pub struct SimplifiedTrack {
    pub artists: Vec<SimplifiedArtist>,
    pub available_markets: Option<Vec<String>>,
    pub disc_number: i32,
    pub duration_ms: u32,
    pub explicit: bool,
    pub external_urls: HashMap<String, String>,
    pub href: Option<String>,
    pub id: Option<String>,
    pub is_local: bool,
    pub name: String,
    pub preview_url: Option<String>,
    pub track_number: u32,
    pub _type: Type,
    pub uri: String,
}

Fields

artists: Vec<SimplifiedArtist>available_markets: Option<Vec<String>>disc_number: i32duration_ms: u32explicit: boolexternal_urls: HashMap<String, String>href: Option<String>id: Option<String>is_local: boolname: Stringpreview_url: Option<String>track_number: u32_type: Typeuri: String

Trait Implementations

impl Clone for SimplifiedTrack[src]

impl Debug for SimplifiedTrack[src]

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

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