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
NonePtsOnly(Result<Timestamp, TimestampError>)InvalidBothFields of Both
pts: Result<Timestamp, TimestampError> | |
dts: Result<Timestamp, TimestampError> |
Trait Implementations
impl PartialEq for PtsDts[src]
impl PartialEq for PtsDtsfn eq(&self, other: &PtsDts) -> bool[src]
fn eq(&self, other: &PtsDts) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &PtsDts) -> bool[src]
fn ne(&self, other: &PtsDts) -> boolThis method tests for !=.
impl Debug for PtsDts[src]
impl Debug for PtsDts