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
track: Resource
The track.
album: Resource
The album.
artist: Resource
The artist.
length: i32
The length in full seconds.
track_type: String
The track type.
Trait Implementations
impl Clone for Track
[src]
fn clone(&self) -> Track
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl<'a> From<&'a JsonValue> for Track
[src]
Implements From<&'a JsonValue>
for Track
.