pub struct AACAudioPacket {
pub packet_type: AACPacketType,
pub aac_data: Bytes,
}Expand description
The tag data body part of audio FLV tag data whose SoundFormat is 10 – AAC.
Fields§
§packet_type: AACPacketTypeOnly useful when sound format is 10 – AAC, 1 byte.
aac_data: BytesThe actual AAC data.
Trait Implementations§
Source§impl Clone for AACAudioPacket
impl Clone for AACAudioPacket
Source§fn clone(&self) -> AACAudioPacket
fn clone(&self) -> AACAudioPacket
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AACAudioPacket
impl Debug for AACAudioPacket
Source§impl PartialEq for AACAudioPacket
impl PartialEq for AACAudioPacket
impl StructuralPartialEq for AACAudioPacket
Auto Trait Implementations§
impl !Freeze for AACAudioPacket
impl RefUnwindSafe for AACAudioPacket
impl Send for AACAudioPacket
impl Sync for AACAudioPacket
impl Unpin for AACAudioPacket
impl UnsafeUnpin for AACAudioPacket
impl UnwindSafe for AACAudioPacket
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