pub struct PlaylistAnnotation {
pub description: String,
pub picture: String,
pub transcoded_pictures: TranscodedPictures,
pub has_abuse_reporting: bool,
pub abuse_report_state: AbuseReportState,
}Fields§
§description: String§picture: String§transcoded_pictures: TranscodedPictures§has_abuse_reporting: bool§abuse_report_state: AbuseReportStateTrait Implementations§
Source§impl Clone for PlaylistAnnotation
impl Clone for PlaylistAnnotation
Source§fn clone(&self) -> PlaylistAnnotation
fn clone(&self) -> PlaylistAnnotation
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 PlaylistAnnotation
impl Debug for PlaylistAnnotation
Source§impl Metadata for PlaylistAnnotation
impl Metadata for PlaylistAnnotation
type Message = PlaylistAnnotation
fn request<'life0, 'life1, 'async_trait>(
session: &'life0 Session,
playlist_id: &'life1 SpotifyId,
) -> Pin<Box<dyn Future<Output = Result<Bytes, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
fn parse(msg: &Self::Message, _: &SpotifyId) -> Result<Self, Error>
fn get<'life0, 'life1, 'async_trait>(
session: &'life0 Session,
id: &'life1 SpotifyId,
) -> Pin<Box<dyn Future<Output = Result<Self, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Auto Trait Implementations§
impl Freeze for PlaylistAnnotation
impl RefUnwindSafe for PlaylistAnnotation
impl Send for PlaylistAnnotation
impl Sync for PlaylistAnnotation
impl Unpin for PlaylistAnnotation
impl UnwindSafe for PlaylistAnnotation
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