pub enum AudioObjectType {
AacMain,
AacLowComplexity,
Unknown(u16),
}
Expand description
SBR Audio Object Type ISO/IEC 14496-3:2019(E) - 1.5.1.2.6
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for AudioObjectType
impl Clone for AudioObjectType
Source§fn clone(&self) -> AudioObjectType
fn clone(&self) -> AudioObjectType
Returns a copy 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 AudioObjectType
impl Debug for AudioObjectType
Source§impl From<AudioObjectType> for u16
impl From<AudioObjectType> for u16
Source§fn from(value: AudioObjectType) -> Self
fn from(value: AudioObjectType) -> Self
Converts to this type from the input type.
Source§impl From<u16> for AudioObjectType
impl From<u16> for AudioObjectType
Source§impl PartialEq for AudioObjectType
impl PartialEq for AudioObjectType
impl Copy for AudioObjectType
impl Eq for AudioObjectType
impl StructuralPartialEq for AudioObjectType
Auto Trait Implementations§
impl Freeze for AudioObjectType
impl RefUnwindSafe for AudioObjectType
impl Send for AudioObjectType
impl Sync for AudioObjectType
impl Unpin for AudioObjectType
impl UnwindSafe for AudioObjectType
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