pub enum SampleEntryType {
Mp4a,
Aavd,
Text,
Unknown(FourCC),
}Variants§
Mp4a
AAC audio
Aavd
Audible Audio (can be treated as Mp4a)
Text
QuickTime Text Media
Unknown(FourCC)
Unknown/unsupported sample entry type
Implementations§
Trait Implementations§
Source§impl Clone for SampleEntryType
impl Clone for SampleEntryType
Source§fn clone(&self) -> SampleEntryType
fn clone(&self) -> SampleEntryType
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 SampleEntryType
impl Debug for SampleEntryType
Source§impl Display for SampleEntryType
impl Display for SampleEntryType
Source§impl From<FourCC> for SampleEntryType
impl From<FourCC> for SampleEntryType
Source§impl From<SampleEntryType> for FourCC
impl From<SampleEntryType> for FourCC
Source§fn from(value: SampleEntryType) -> Self
fn from(value: SampleEntryType) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SampleEntryType
impl PartialEq for SampleEntryType
impl StructuralPartialEq for SampleEntryType
Auto Trait Implementations§
impl Freeze for SampleEntryType
impl RefUnwindSafe for SampleEntryType
impl Send for SampleEntryType
impl Sync for SampleEntryType
impl Unpin for SampleEntryType
impl UnsafeUnpin for SampleEntryType
impl UnwindSafe for SampleEntryType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more