Struct QueryablePlaylist
pub struct QueryablePlaylist {
pub playlist_id: Option<String>,
pub playlist_name: String,
pub playlist_coverpath: Option<String>,
pub playlist_song_count: f64,
pub playlist_desc: Option<String>,
pub playlist_path: Option<String>,
pub extension: Option<String>,
pub icon: Option<String>,
pub library_item: Option<bool>,
}
Fields§
§playlist_id: Option<String>
§playlist_name: String
§playlist_coverpath: Option<String>
§playlist_song_count: f64
§playlist_desc: Option<String>
§playlist_path: Option<String>
§extension: Option<String>
§icon: Option<String>
§library_item: Option<bool>
Trait Implementations§
§impl Clone for QueryablePlaylist
impl Clone for QueryablePlaylist
§fn clone(&self) -> QueryablePlaylist
fn clone(&self) -> QueryablePlaylist
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 more§impl Debug for QueryablePlaylist
impl Debug for QueryablePlaylist
§impl Default for QueryablePlaylist
impl Default for QueryablePlaylist
§fn default() -> QueryablePlaylist
fn default() -> QueryablePlaylist
Returns the “default value” for a type. Read more
§impl<'de> Deserialize<'de> for QueryablePlaylist
impl<'de> Deserialize<'de> for QueryablePlaylist
§fn deserialize<__D>(
__deserializer: __D,
) -> Result<QueryablePlaylist, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<QueryablePlaylist, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl Hash for QueryablePlaylist
impl Hash for QueryablePlaylist
§impl Ord for QueryablePlaylist
impl Ord for QueryablePlaylist
§fn cmp(&self, other: &QueryablePlaylist) -> Ordering
fn cmp(&self, other: &QueryablePlaylist) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
§impl PartialEq for QueryablePlaylist
impl PartialEq for QueryablePlaylist
§impl PartialOrd for QueryablePlaylist
impl PartialOrd for QueryablePlaylist
§impl SearchByTerm for QueryablePlaylist
impl SearchByTerm for QueryablePlaylist
fn search_by_term(term: Option<String>) -> QueryablePlaylist
§impl Serialize for QueryablePlaylist
impl Serialize for QueryablePlaylist
§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for QueryablePlaylist
Auto Trait Implementations§
impl Freeze for QueryablePlaylist
impl RefUnwindSafe for QueryablePlaylist
impl Send for QueryablePlaylist
impl Sync for QueryablePlaylist
impl Unpin for QueryablePlaylist
impl UnwindSafe for QueryablePlaylist
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