[−][src]Struct av_data::packet::Packet
Packet with compressed data.
Fields
data: Vec<u8>Packet data.
pos: Option<usize>Packet position in the stream.
If None, the packet is not associated to a stream.
stream_index: isizeType of stream the packet is associated to.
t: TimeInfoPacket timestamp information.
is_key: boolTells whether a packet contains a keyframe.
is_corrupted: boolTells whether a packet is corrupted.
Implementations
impl Packet[src]
pub fn with_capacity(capacity: usize) -> Self[src]
Creates a new empty Packet of a determined capacity.
pub fn zeroed(size: usize) -> Self[src]
Creates a zero-initalized Packet of a determined capacity.
pub fn new() -> Self[src]
Creates a new empty Packet.
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for Packet[src]
impl Send for Packet[src]
impl Sync for Packet[src]
impl Unpin for Packet[src]
impl !UnwindSafe for Packet[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,