pub struct CoverArt {
pub id: String,
pub entity_type: EntityType,
pub attributes: CoverArtAttributes,
pub relationships: Vec<Relationship>,
}
Expand description
Main structure used for representing the response containg cover info
Fields§
§id: String
§entity_type: EntityType
§attributes: CoverArtAttributes
§relationships: Vec<Relationship>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CoverArt
impl<'de> Deserialize<'de> for CoverArt
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 CoverArt
impl RefUnwindSafe for CoverArt
impl Send for CoverArt
impl Sync for CoverArt
impl Unpin for CoverArt
impl UnwindSafe for CoverArt
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