Enum mpeg2ts_reader::pes::PtsDts[][src]

pub enum PtsDts {
    None,
    PtsOnly(Result<Timestamp, TimestampError>),
    Invalid,
    Both {
        pts: Result<Timestamp, TimestampError>,
        dts: Result<Timestamp, TimestampError>,
    },
}

Variants

Fields of Both

Trait Implementations

impl PartialEq for PtsDts
[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 PtsDts
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for PtsDts

impl Sync for PtsDts