pub enum AudioCodecSpecific {
ES_Descriptor(ES_Descriptor),
FLACSpecificBox(FLACSpecificBox),
OpusSpecificBox(OpusSpecificBox),
ALACSpecificBox(ALACSpecificBox),
MP3,
LPCM,
}
Variants§
ES_Descriptor(ES_Descriptor)
FLACSpecificBox(FLACSpecificBox)
OpusSpecificBox(OpusSpecificBox)
ALACSpecificBox(ALACSpecificBox)
MP3
LPCM
Trait Implementations§
Source§impl Clone for AudioCodecSpecific
impl Clone for AudioCodecSpecific
Source§fn clone(&self) -> AudioCodecSpecific
fn clone(&self) -> AudioCodecSpecific
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 moreAuto Trait Implementations§
impl Freeze for AudioCodecSpecific
impl RefUnwindSafe for AudioCodecSpecific
impl Send for AudioCodecSpecific
impl Sync for AudioCodecSpecific
impl Unpin for AudioCodecSpecific
impl UnwindSafe for AudioCodecSpecific
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