pub struct AudioData {
pub header: AudioTagHeader,
pub body: AudioTagBody,
}
Expand description
FLV AUDIODATA
tag
This is a container for legacy as well as enhanced audio data.
Defined by:
- Legacy FLV spec, Annex E.4.2.1
- Enhanced RTMP spec, page 19, Enhanced Audio
Fields§
§header: AudioTagHeader
The header of the audio data.
body: AudioTagBody
The body of the audio data.
Implementations§
Trait Implementations§
impl StructuralPartialEq for AudioData
Auto Trait Implementations§
impl !Freeze for AudioData
impl RefUnwindSafe for AudioData
impl Send for AudioData
impl Sync for AudioData
impl Unpin for AudioData
impl UnwindSafe for AudioData
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