pub struct LibrarySearchResults {
pub library_albums: Relationship<LibraryAlbum>,
pub library_artists: Relationship<LibraryArtist>,
pub library_music_videos: Relationship<LibraryMusicVideo>,
pub library_playlists: Relationship<LibraryPlaylist>,
pub library_songs: Relationship<LibrarySong>,
}Expand description
Library search results
Fields§
§library_albums: Relationship<LibraryAlbum>Library albums
library_artists: Relationship<LibraryArtist>Library artists
library_music_videos: Relationship<LibraryMusicVideo>Library music videos
library_playlists: Relationship<LibraryPlaylist>Library playlists
library_songs: Relationship<LibrarySong>Library songs
Trait Implementations§
Source§impl Clone for LibrarySearchResults
impl Clone for LibrarySearchResults
Source§fn clone(&self) -> LibrarySearchResults
fn clone(&self) -> LibrarySearchResults
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 LibrarySearchResults
impl Debug for LibrarySearchResults
Source§impl Default for LibrarySearchResults
impl Default for LibrarySearchResults
Source§fn default() -> LibrarySearchResults
fn default() -> LibrarySearchResults
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LibrarySearchResultswhere
LibrarySearchResults: Default,
impl<'de> Deserialize<'de> for LibrarySearchResultswhere
LibrarySearchResults: Default,
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
Source§impl Hash for LibrarySearchResults
impl Hash for LibrarySearchResults
Source§impl PartialEq for LibrarySearchResults
impl PartialEq for LibrarySearchResults
Source§impl Serialize for LibrarySearchResults
impl Serialize for LibrarySearchResults
impl Eq for LibrarySearchResults
impl StructuralPartialEq for LibrarySearchResults
Auto Trait Implementations§
impl Freeze for LibrarySearchResults
impl RefUnwindSafe for LibrarySearchResults
impl Send for LibrarySearchResults
impl Sync for LibrarySearchResults
impl Unpin for LibrarySearchResults
impl UnwindSafe for LibrarySearchResults
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