pub struct ApiLibraryArtist {
pub artist_id: u64,
pub title: String,
pub contains_cover: bool,
pub tidal_id: Option<u64>,
pub qobuz_id: Option<u64>,
pub yt_id: Option<u64>,
}Fields§
§artist_id: u64§title: String§contains_cover: bool§tidal_id: Option<u64>§qobuz_id: Option<u64>§yt_id: Option<u64>Trait Implementations§
Source§impl Clone for ApiLibraryArtist
impl Clone for ApiLibraryArtist
Source§fn clone(&self) -> ApiLibraryArtist
fn clone(&self) -> ApiLibraryArtist
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 ComposeSchema for ApiLibraryArtist
impl ComposeSchema for ApiLibraryArtist
Source§impl Debug for ApiLibraryArtist
impl Debug for ApiLibraryArtist
Source§impl Default for ApiLibraryArtist
impl Default for ApiLibraryArtist
Source§fn default() -> ApiLibraryArtist
fn default() -> ApiLibraryArtist
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApiLibraryArtist
impl<'de> Deserialize<'de> for ApiLibraryArtist
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 PartialEq for ApiLibraryArtist
impl PartialEq for ApiLibraryArtist
Source§impl Serialize for ApiLibraryArtist
impl Serialize for ApiLibraryArtist
Source§impl ToSchema for ApiLibraryArtist
impl ToSchema for ApiLibraryArtist
impl Eq for ApiLibraryArtist
impl StructuralPartialEq for ApiLibraryArtist
Auto Trait Implementations§
impl Freeze for ApiLibraryArtist
impl RefUnwindSafe for ApiLibraryArtist
impl Send for ApiLibraryArtist
impl Sync for ApiLibraryArtist
impl Unpin for ApiLibraryArtist
impl UnwindSafe for ApiLibraryArtist
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.