[][src]Struct ffmpeg_sys_next::AVProgram

#[repr(C)]pub struct AVProgram {
    pub id: c_int,
    pub flags: c_int,
    pub discard: AVDiscard,
    pub stream_index: *mut c_uint,
    pub nb_stream_indexes: c_uint,
    pub metadata: *mut AVDictionary,
    pub program_num: c_int,
    pub pmt_pid: c_int,
    pub pcr_pid: c_int,
    pub pmt_version: c_int,
    pub start_time: i64,
    pub end_time: i64,
    pub pts_wrap_reference: i64,
    pub pts_wrap_behavior: c_int,
}

Fields

id: c_intflags: c_intdiscard: AVDiscardstream_index: *mut c_uintnb_stream_indexes: c_uintmetadata: *mut AVDictionaryprogram_num: c_intpmt_pid: c_intpcr_pid: c_intpmt_version: c_intstart_time: i64end_time: i64pts_wrap_reference: i64pts_wrap_behavior: c_int

Trait Implementations

impl Clone for AVProgram[src]

impl Copy for AVProgram[src]

impl Debug for AVProgram[src]

impl Eq for AVProgram[src]

impl PartialEq<AVProgram> for AVProgram[src]

impl StructuralEq for AVProgram[src]

impl StructuralPartialEq for AVProgram[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.