We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5dcbaa commit 31c41adCopy full SHA for 31c41ad
lofty/src/picture.rs
@@ -489,6 +489,7 @@ impl Picture {
489
/// Placeholder for conversions
490
pub(crate) const EMPTY: Self = Picture {
491
pic_type: PictureType::Other,
492
+ file_name: None,
493
mime_type: None,
494
description: None,
495
data: Cow::Owned(Vec::new()),
@@ -841,12 +842,3 @@ impl Picture {
841
842
}
843
844
-
845
-// A placeholder that is needed during conversions.
846
-pub(crate) const TOMBSTONE_PICTURE: Picture = Picture {
847
- pic_type: PictureType::Other,
848
- file_name: None,
849
- mime_type: None,
850
- description: None,
851
- data: Cow::Owned(Vec::new()),
852
-};
0 commit comments