pub struct CoverVariant {
pub variant_type: CoverVariantType,
pub mime_type: String,
pub data: Vec<u8>,
pub description: Option<String>,
}Expand description
Alternative cover art variant
Fields§
§variant_type: CoverVariantTypeVariant type
mime_type: StringMIME type
data: Vec<u8>Binary data
description: Option<String>Description
Trait Implementations§
Source§impl Clone for CoverVariant
impl Clone for CoverVariant
Source§fn clone(&self) -> CoverVariant
fn clone(&self) -> CoverVariant
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 CoverVariant
impl Debug for CoverVariant
Source§impl<'de> Deserialize<'de> for CoverVariant
impl<'de> Deserialize<'de> for CoverVariant
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 CoverVariant
impl RefUnwindSafe for CoverVariant
impl Send for CoverVariant
impl Sync for CoverVariant
impl Unpin for CoverVariant
impl UnwindSafe for CoverVariant
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