pub struct SongPerformance {
pub label: String,
pub artists: Vec<Artist>,
}
Fields§
§label: String
§artists: Vec<Artist>
Trait Implementations§
Source§impl Debug for SongPerformance
impl Debug for SongPerformance
Source§impl<'de> Deserialize<'de> for SongPerformance
impl<'de> Deserialize<'de> for SongPerformance
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 SongPerformance
impl RefUnwindSafe for SongPerformance
impl Send for SongPerformance
impl Sync for SongPerformance
impl Unpin for SongPerformance
impl UnwindSafe for SongPerformance
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