pub struct LibraryBrief {
pub artists: Box<[ArtistBrief]>,
pub albums: Box<[AlbumBrief]>,
pub songs: Box<[SongBrief]>,
pub playlists: Box<[PlaylistBrief]>,
pub collections: Box<[CollectionBrief]>,
pub dynamic_playlists: Box<[DynamicPlaylist]>,
}Expand description
A brief representation of the library
Fields§
§artists: Box<[ArtistBrief]>§albums: Box<[AlbumBrief]>§songs: Box<[SongBrief]>§playlists: Box<[PlaylistBrief]>§collections: Box<[CollectionBrief]>§dynamic_playlists: Box<[DynamicPlaylist]>Trait Implementations§
Source§impl Clone for LibraryBrief
impl Clone for LibraryBrief
Source§fn clone(&self) -> LibraryBrief
fn clone(&self) -> LibraryBrief
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 LibraryBrief
impl Debug for LibraryBrief
Source§impl Default for LibraryBrief
impl Default for LibraryBrief
Source§fn default() -> LibraryBrief
fn default() -> LibraryBrief
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LibraryBrief
impl<'de> Deserialize<'de> for LibraryBrief
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 LibraryBrief
impl RefUnwindSafe for LibraryBrief
impl Send for LibraryBrief
impl Sync for LibraryBrief
impl Unpin for LibraryBrief
impl UnwindSafe for LibraryBrief
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