Enum mpeg2ts_reader::pes::TimestampError[][src]

pub enum TimestampError {
    IncorrectPrefixBits {
        expected: u8,
        actual: u8,
    },
    MarkerBitNotSet {
        bit_number: u8,
    },
}

Detail about the formatting problem which prevented a Timestamp value being parsed.

Variants

Fields of IncorrectPrefixBits

Fields of MarkerBitNotSet

Trait Implementations

impl PartialEq for TimestampError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Debug for TimestampError
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations