pub struct TrackFeedback {
pub feedback_id: String,
pub song_name: String,
pub artist_name: String,
pub is_positive: bool,
pub music_token: String,
pub date_created: Timestamp,
pub album_art_url: String,
}Expand description
"thumbsDown": [{
"dateCreated": {
"date": 28,
"day": 5,
"hours": 10,
"minutes": 43,
"month": 2,
"nanos": 637000000,
"seconds": 30,
"time": 1396028610637,
"timezoneOffset": 420,
"year": 114
},
"albumArtUrl": "http://cont-ch1-1.pandora.com/images/public/amz/9/0/5/1/724383771509_130W_130H.jpg",
"musicToken": "5a0018da7876f6e7",
"songName": "Talk Show Host",
"artistName": "Radiohead",
"feedbackId": "-7241622182873125395",
"isPositive": false
}]Fields§
§feedback_id: StringUnique identifier/handle referring to this feedback submission.
song_name: StringName of the song that was rated.
artist_name: StringName of the artist for the song that was rated.
is_positive: boolWhether the rating is positive (true) or negative (false).
music_token: StringA token referring to the song that was rated.
date_created: TimestampDate the feedback was created.
album_art_url: StringUnknown
Trait Implementations§
Source§impl Clone for TrackFeedback
impl Clone for TrackFeedback
Source§fn clone(&self) -> TrackFeedback
fn clone(&self) -> TrackFeedback
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TrackFeedback
impl Debug for TrackFeedback
Source§impl<'de> Deserialize<'de> for TrackFeedback
impl<'de> Deserialize<'de> for TrackFeedback
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for TrackFeedback
impl RefUnwindSafe for TrackFeedback
impl Send for TrackFeedback
impl Sync for TrackFeedback
impl Unpin for TrackFeedback
impl UnwindSafe for TrackFeedback
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more