pub struct LibrarySong {
pub header: ResourceHeader,
pub attributes: Option<LibrarySongAttributes>,
pub relationships: LibrarySongRelationships,
}Expand description
Library song
Fields§
§header: ResourceHeaderResource header
attributes: Option<LibrarySongAttributes>Library song attributes
relationships: LibrarySongRelationshipsLibrary song relationships
Trait Implementations§
Source§impl Clone for LibrarySong
impl Clone for LibrarySong
Source§fn clone(&self) -> LibrarySong
fn clone(&self) -> LibrarySong
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 LibrarySong
impl Debug for LibrarySong
Source§impl Default for LibrarySong
impl Default for LibrarySong
Source§fn default() -> LibrarySong
fn default() -> LibrarySong
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LibrarySong
impl<'de> Deserialize<'de> for LibrarySong
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 From<LibrarySong> for Resource
impl From<LibrarySong> for Resource
Source§fn from(data: LibrarySong) -> Self
fn from(data: LibrarySong) -> Self
Converts to this type from the input type.
Source§impl Hash for LibrarySong
impl Hash for LibrarySong
Source§impl PartialEq for LibrarySong
impl PartialEq for LibrarySong
Source§impl Serialize for LibrarySong
impl Serialize for LibrarySong
impl Eq for LibrarySong
impl StructuralPartialEq for LibrarySong
Auto Trait Implementations§
impl Freeze for LibrarySong
impl RefUnwindSafe for LibrarySong
impl Send for LibrarySong
impl Sync for LibrarySong
impl Unpin for LibrarySong
impl UnwindSafe for LibrarySong
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