pub enum LegacyAudioTagBody {
Aac(AacAudioData),
Other {
sound_data: Bytes,
},
}
Expand description
The legacy FLV AudioTagBody
.
Defined by:
- Legacy FLV spec, Annex E.4.2.1
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for LegacyAudioTagBody
impl Clone for LegacyAudioTagBody
Source§fn clone(&self) -> LegacyAudioTagBody
fn clone(&self) -> LegacyAudioTagBody
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 LegacyAudioTagBody
impl Debug for LegacyAudioTagBody
Source§impl PartialEq for LegacyAudioTagBody
impl PartialEq for LegacyAudioTagBody
impl StructuralPartialEq for LegacyAudioTagBody
Auto Trait Implementations§
impl !Freeze for LegacyAudioTagBody
impl RefUnwindSafe for LegacyAudioTagBody
impl Send for LegacyAudioTagBody
impl Sync for LegacyAudioTagBody
impl Unpin for LegacyAudioTagBody
impl UnwindSafe for LegacyAudioTagBody
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