Struct spotify::status::Track [] [src]

pub struct Track {
    pub track: Resource,
    pub album: Resource,
    pub artist: Resource,
    pub length: i32,
    pub track_type: String,
}

A Spotify track.

Fields

The track.

The album.

The artist.

The length in full seconds.

The track type.

Trait Implementations

impl Clone for Track
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'a> From<&'a JsonValue> for Track
[src]

Implements From<&'a JsonValue> for Track.

Performs the conversion.