pub enum MetadataFormat {
Flac,
Ogg,
Matroska,
WebM,
}Expand description
Metadata format detection result.
Variants§
Flac
FLAC uses Vorbis comments.
Ogg
Ogg (Vorbis, Opus) uses Vorbis comments.
Matroska
Matroska/WebM uses native tags.
WebM
WebM (subset of Matroska).
Trait Implementations§
Source§impl Clone for MetadataFormat
impl Clone for MetadataFormat
Source§fn clone(&self) -> MetadataFormat
fn clone(&self) -> MetadataFormat
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 MetadataFormat
impl Debug for MetadataFormat
Source§impl From<ContainerFormat> for MetadataFormat
impl From<ContainerFormat> for MetadataFormat
Source§fn from(format: ContainerFormat) -> Self
fn from(format: ContainerFormat) -> Self
Converts to this type from the input type.
Source§impl PartialEq for MetadataFormat
impl PartialEq for MetadataFormat
impl Copy for MetadataFormat
impl Eq for MetadataFormat
impl StructuralPartialEq for MetadataFormat
Auto Trait Implementations§
impl Freeze for MetadataFormat
impl RefUnwindSafe for MetadataFormat
impl Send for MetadataFormat
impl Sync for MetadataFormat
impl Unpin for MetadataFormat
impl UnsafeUnpin for MetadataFormat
impl UnwindSafe for MetadataFormat
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