[][src]Struct av_data::packet::Packet

pub struct Packet {
    pub data: Vec<u8>,
    pub pos: Option<usize>,
    pub stream_index: isize,
    pub t: TimeInfo,
    pub is_key: bool,
    pub is_corrupted: bool,
}

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: isize

Type of stream the packet is associated to.

t: TimeInfo

Packet timestamp information.

is_key: bool

Tells whether a packet contains a keyframe.

is_corrupted: bool

Tells 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

impl Clone for Packet[src]

impl Debug for Packet[src]

impl Default for Packet[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.