pub struct ArtistBookmark {
pub bookmark_token: String,
pub music_token: String,
pub artist_name: String,
pub art_url: String,
pub date_created: Timestamp,
}
Expand description
“artists”: [ { “musicToken”: “R130360”, “artistName”: “Cannabich, Christian”, “artUrl”: “http://cont-sv5-2.pandora.com/images/public/amz/5/2/9/7/095115137925_500W_488H.jpg”, “bookmarkToken”: “80982345262345234”, “dateCreated”: { “nanos”: 300000000, “seconds”: 22, “year”: 112, “month”: 4, “hours”: 11, “time”: 1350566223422, “date”: 23, “minutes”: 01, “day”: 2, “timezoneOffset”: 720 } } ]
Fields§
§bookmark_token: String
Unique identifier (token) associated with this bookmark.
music_token: String
Unique identifier (token) for the music item that was bookmarked.
artist_name: String
The name of the artist bookmarked.
art_url: String
Art url for the bookmark.
date_created: Timestamp
Timestamp for when the bookmark was created.
Trait Implementations§
Source§impl Clone for ArtistBookmark
impl Clone for ArtistBookmark
Source§fn clone(&self) -> ArtistBookmark
fn clone(&self) -> ArtistBookmark
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 ArtistBookmark
impl Debug for ArtistBookmark
Source§impl<'de> Deserialize<'de> for ArtistBookmark
impl<'de> Deserialize<'de> for ArtistBookmark
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 ArtistBookmark
impl RefUnwindSafe for ArtistBookmark
impl Send for ArtistBookmark
impl Sync for ArtistBookmark
impl Unpin for ArtistBookmark
impl UnwindSafe for ArtistBookmark
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