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,
    },
}
Expand description

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

Fields

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

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

§

Pmt

Fields

§pid: Pid

the Pid which contains the PMT

§program_number: u16

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

Requests a filter implementation for handling Program Map Table sections

§

Nit

Fields

§pid: Pid

The Pid of the packets which contain the NIT.

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

Trait Implementations§

source§

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

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

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>

§

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

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.