pub struct PlaylistBrowseResponse {
pub playlists: Vec<PlaylistResponse>,
pub pages: u32,
pub total_playlist_count: u64,
}
Expand description
Response for Browse
.
Fields§
§playlists: Vec<PlaylistResponse>
the Playlists returned.
pages: u32
The number of pages found.
total_playlist_count: u64
The total number of Playlists found
Trait Implementations§
Source§impl Clone for PlaylistBrowseResponse
impl Clone for PlaylistBrowseResponse
Source§fn clone(&self) -> PlaylistBrowseResponse
fn clone(&self) -> PlaylistBrowseResponse
Returns a copy 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 PlaylistBrowseResponse
impl Debug for PlaylistBrowseResponse
Source§impl<'de> Deserialize<'de> for PlaylistBrowseResponse
impl<'de> Deserialize<'de> for PlaylistBrowseResponse
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 PlaylistBrowseResponse
impl RefUnwindSafe for PlaylistBrowseResponse
impl Send for PlaylistBrowseResponse
impl Sync for PlaylistBrowseResponse
impl Unpin for PlaylistBrowseResponse
impl UnwindSafe for PlaylistBrowseResponse
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