#[non_exhaustive]pub enum Mp4Codec {
Unknown,
AAC,
ALAC,
MP3,
FLAC,
}
Expand description
An MP4 file’s audio codec
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
source§impl PartialEq for Mp4Codec
impl PartialEq for Mp4Codec
impl Copy for Mp4Codec
impl Eq for Mp4Codec
impl StructuralPartialEq for Mp4Codec
Auto Trait Implementations§
impl Freeze for Mp4Codec
impl RefUnwindSafe for Mp4Codec
impl Send for Mp4Codec
impl Sync for Mp4Codec
impl Unpin for Mp4Codec
impl UnwindSafe for Mp4Codec
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