pub struct Picture {
pub mime_type: String,
pub picture_type: PictureType,
pub description: String,
pub data: Vec<u8>,
}Expand description
A structure representing an ID3 picture frame’s contents.
Fields§
§mime_type: StringThe picture’s MIME type.
picture_type: PictureTypeThe type of picture.
description: StringA description of the picture’s contents.
data: Vec<u8>The image data.
Trait Implementations§
Source§impl Ord for Picture
impl Ord for Picture
Source§impl PartialOrd for Picture
impl PartialOrd for Picture
impl Eq for Picture
impl StructuralPartialEq for Picture
Auto Trait Implementations§
impl Freeze for Picture
impl RefUnwindSafe for Picture
impl Send for Picture
impl Sync for Picture
impl Unpin for Picture
impl UnwindSafe for Picture
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