pub struct MetadataEmbed {
pub title: Option<String>,
pub artist: Option<String>,
pub album: Option<String>,
pub track_number: Option<String>,
pub genre: Option<String>,
pub year: Option<String>,
pub comment: Option<String>,
pub thumbnail_url: Option<String>,
}Fields§
§title: Option<String>§artist: Option<String>§album: Option<String>§track_number: Option<String>§genre: Option<String>§year: Option<String>§comment: Option<String>§thumbnail_url: Option<String>Trait Implementations§
Source§impl Clone for MetadataEmbed
impl Clone for MetadataEmbed
Source§fn clone(&self) -> MetadataEmbed
fn clone(&self) -> MetadataEmbed
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MetadataEmbed
impl Debug for MetadataEmbed
Source§impl Default for MetadataEmbed
impl Default for MetadataEmbed
Source§fn default() -> MetadataEmbed
fn default() -> MetadataEmbed
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MetadataEmbed
impl<'de> Deserialize<'de> for MetadataEmbed
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 MetadataEmbed
impl RefUnwindSafe for MetadataEmbed
impl Send for MetadataEmbed
impl Sync for MetadataEmbed
impl Unpin for MetadataEmbed
impl UnsafeUnpin for MetadataEmbed
impl UnwindSafe for MetadataEmbed
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