Enum mpeg2ts_reader::demultiplex::FilterRequest[][src]

pub enum FilterRequest<'a, 'buf> {
    ByPid(Pid),
    ByStream {
        program_pid: Pid,
        stream_type: StreamType,
        pmt: &'a PmtSection<'buf>,
        stream_info: &'a StreamInfo<'buf>,
    },
    Pmt {
        pid: Pid,
        program_number: u16,
    },
    Nit {
        pid: Pid,
    },
}

Request that may be submitted to a DemuxContext::construct() implementation.

Variants

ByPid(Pid)

requests a filter implementation for handling a PID contained in the transport stream that was not announced via other means (PAT/PMT).

ByStream

requests a filter for the stream with the given details which has just been discovered within a Program Map Table section.

Fields of ByStream

program_pid: Pid

The Pid of the program containing the stream to be handled

stream_type: StreamType

The type of the stream to be handled

pmt: &'a PmtSection<'buf>

The full PmtSection defining the stream needing to he handled

stream_info: &'a StreamInfo<'buf>

the PMT stream information for the specific stream being handled (which will be one of the values inside the pmt which is also provided.

Pmt

Requests a filter implementation for handling Program Map Table sections

Fields of Pmt

pid: Pid

the Pid which contains the PMT

program_number: u16

the program number of the program for which this will be the PMT

Nit

requests a filter implementation to handle packets containing Network Information Table data

Fields of Nit

pid: Pid

The Pid of the packets which contain the NIT.

Trait Implementations

impl<'a, 'buf> Debug for FilterRequest<'a, 'buf>[src]

Auto Trait Implementations

impl<'a, 'buf> RefUnwindSafe for FilterRequest<'a, 'buf>

impl<'a, 'buf> Send for FilterRequest<'a, 'buf>

impl<'a, 'buf> Sync for FilterRequest<'a, 'buf>

impl<'a, 'buf> Unpin for FilterRequest<'a, 'buf> where
    'buf: 'a, 

impl<'a, 'buf> UnwindSafe for FilterRequest<'a, 'buf>

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, 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.