pub struct RemoveUserSavedAlbums {
pub ids: Vec<String>,
}Expand description
Remove one or more albums from the current user’s ‘Your Music’ library.
Fields§
§ids: Vec<String>A list of Spotify IDs for the albums.
Trait Implementations§
Source§impl Clone for RemoveUserSavedAlbums
impl Clone for RemoveUserSavedAlbums
Source§fn clone(&self) -> RemoveUserSavedAlbums
fn clone(&self) -> RemoveUserSavedAlbums
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 RemoveUserSavedAlbums
impl Debug for RemoveUserSavedAlbums
Source§impl Endpoint for RemoveUserSavedAlbums
impl Endpoint for RemoveUserSavedAlbums
Source§fn parameters(&self) -> QueryParams<'_>
fn parameters(&self) -> QueryParams<'_>
Query parameters for the endpoint.
Source§impl<T, I> From<I> for RemoveUserSavedAlbums
impl<T, I> From<I> for RemoveUserSavedAlbums
Auto Trait Implementations§
impl Freeze for RemoveUserSavedAlbums
impl RefUnwindSafe for RemoveUserSavedAlbums
impl Send for RemoveUserSavedAlbums
impl Sync for RemoveUserSavedAlbums
impl Unpin for RemoveUserSavedAlbums
impl UnwindSafe for RemoveUserSavedAlbums
Blanket Implementations§
Source§impl<E, T, C> AsyncQuery<T, C> for E
impl<E, T, C> AsyncQuery<T, C> for E
Source§fn query_async<'life0, 'life1, 'async_trait>(
&'life0 self,
client: &'life1 C,
) -> Pin<Box<dyn Future<Output = Result<T, ApiError<<C as RestClient>::Error>>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
E: 'async_trait,
fn query_async<'life0, 'life1, 'async_trait>(
&'life0 self,
client: &'life1 C,
) -> Pin<Box<dyn Future<Output = Result<T, ApiError<<C as RestClient>::Error>>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
E: 'async_trait,
Perform the query asynchronously against the client.
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