#[non_exhaustive]pub enum Mp4AudioCodec {
Aac,
Alac,
Unknown,
}Expand description
Audio codec detected in an MP4 file
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 Clone for Mp4AudioCodec
impl Clone for Mp4AudioCodec
Source§fn clone(&self) -> Mp4AudioCodec
fn clone(&self) -> Mp4AudioCodec
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 Mp4AudioCodec
impl Debug for Mp4AudioCodec
Source§impl Display for Mp4AudioCodec
impl Display for Mp4AudioCodec
Source§impl Hash for Mp4AudioCodec
impl Hash for Mp4AudioCodec
Source§impl PartialEq for Mp4AudioCodec
impl PartialEq for Mp4AudioCodec
impl Copy for Mp4AudioCodec
impl Eq for Mp4AudioCodec
impl StructuralPartialEq for Mp4AudioCodec
Auto Trait Implementations§
impl Freeze for Mp4AudioCodec
impl RefUnwindSafe for Mp4AudioCodec
impl Send for Mp4AudioCodec
impl Sync for Mp4AudioCodec
impl Unpin for Mp4AudioCodec
impl UnsafeUnpin for Mp4AudioCodec
impl UnwindSafe for Mp4AudioCodec
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