pub enum ArtistView {
Details,
TopTracks,
Albums,
Related,
}Expand description
What information to retrieve for an artist
Variants§
Details
Basic artist details (default)
TopTracks
Artist’s top tracks
Albums
Artist’s albums
Related
Related artists
Trait Implementations§
Source§impl Clone for ArtistView
impl Clone for ArtistView
Source§fn clone(&self) -> ArtistView
fn clone(&self) -> ArtistView
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 ArtistView
impl Debug for ArtistView
Source§impl Default for ArtistView
impl Default for ArtistView
Source§fn default() -> ArtistView
fn default() -> ArtistView
Returns the “default value” for a type. Read more
impl Copy for ArtistView
Auto Trait Implementations§
impl Freeze for ArtistView
impl RefUnwindSafe for ArtistView
impl Send for ArtistView
impl Sync for ArtistView
impl Unpin for ArtistView
impl UnwindSafe for ArtistView
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