[][src]Enum mpeg2ts_reader::demultiplex::DemuxError

pub enum DemuxError {
    NotEnoughData {
        field: &'static str,
        expected: usize,
        actual: usize,
    },
}

TODO: this type does not belong here

Variants

NotEnoughData

The transport stream has a syntax error that means there was not enough data present to parse the requested structure.

Fields of NotEnoughData

field: &'static str

The name of the field we were unable to parse

expected: usize

The expected size of the field data

actual: usize

the actual size of date available within the transport stream

Trait Implementations

impl Debug for DemuxError[src]

Auto Trait Implementations

impl Send for DemuxError

impl Sync for DemuxError

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.