DedupSectionSyntaxPayloadParser

Struct DedupSectionSyntaxPayloadParser 

Source
pub struct DedupSectionSyntaxPayloadParser<SSPP>{ /* private fields */ }
Expand description

A wrapper around some other implementation of SectionSyntaxPayloadParser that passes-through section data, unless the TableSyntaxHeader indicates a version_number which is the same as the last data that was passed though.

This avoids the underlying code needing to re-parse duplicate copies of the section, which are usually inserted periodically in the Transport Stream.

Implementations§

Source§

impl<SSPP> DedupSectionSyntaxPayloadParser<SSPP>

Source

pub fn new(inner: SSPP) -> DedupSectionSyntaxPayloadParser<SSPP>

Wraps the given SectionSyntaxPayloadParser in a new DedupSectionSyntaxPayloadParser instance.

Trait Implementations§

Source§

impl<SSPP> SectionSyntaxPayloadParser for DedupSectionSyntaxPayloadParser<SSPP>

Source§

type Context = <SSPP as SectionSyntaxPayloadParser>::Context

The type of the context object passed to all methods
Source§

fn start_syntax_section<'a>( &mut self, ctx: &mut Self::Context, header: &SectionCommonHeader, table_syntax_header: &TableSyntaxHeader<'a>, data: &'a [u8], )

NB the data buffer passed to will include the bytes which are represented by header and table_syntax_header (in order that the called code can check any CRC that covers the whole section).
Source§

fn continue_syntax_section(&mut self, ctx: &mut Self::Context, data: &[u8])

may be called to pass the implementation additional slices of section data, if the complete section was not already passed.
Source§

fn reset(&mut self)

called if there is a problem in the transport stream that means any in-progress section data should be discarded.

Auto Trait Implementations§

§

impl<SSPP> Freeze for DedupSectionSyntaxPayloadParser<SSPP>
where SSPP: Freeze,

§

impl<SSPP> RefUnwindSafe for DedupSectionSyntaxPayloadParser<SSPP>
where SSPP: RefUnwindSafe,

§

impl<SSPP> Send for DedupSectionSyntaxPayloadParser<SSPP>
where SSPP: Send,

§

impl<SSPP> Sync for DedupSectionSyntaxPayloadParser<SSPP>
where SSPP: Sync,

§

impl<SSPP> Unpin for DedupSectionSyntaxPayloadParser<SSPP>
where SSPP: Unpin,

§

impl<SSPP> UnwindSafe for DedupSectionSyntaxPayloadParser<SSPP>
where SSPP: UnwindSafe,

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

Source§

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

Source§

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.