Struct mpeg2ts_reader::demultiplex::PatPacketFilter[][src]

pub struct PatPacketFilter<Ctx: DemuxContext> { /* fields omitted */ }

PacketFilter implementation which will insert some other PacketFilter into the Demultiplex instance for each program listed in the stream’s PAT-section.

The particular PacketFilter to be inserted is determined by querying DemuxContext::construct(), passing a FilterRequest::Pmt request.

Trait Implementations

impl<Ctx: DemuxContext> Default for PatPacketFilter<Ctx>[src]

impl<Ctx: DemuxContext> PacketFilter for PatPacketFilter<Ctx>[src]

type Ctx = Ctx

The type of context-object used by the Demultiplex instance with which implementing PacketFilters will be collaborating. Read more

Auto Trait Implementations

impl<Ctx> RefUnwindSafe for PatPacketFilter<Ctx> where
    Ctx: RefUnwindSafe

impl<Ctx> Send for PatPacketFilter<Ctx> where
    Ctx: Send

impl<Ctx> Sync for PatPacketFilter<Ctx> where
    Ctx: Sync

impl<Ctx> Unpin for PatPacketFilter<Ctx> where
    Ctx: Unpin

impl<Ctx> UnwindSafe for PatPacketFilter<Ctx> where
    Ctx: UnwindSafe

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.