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]
fn eq(&self, __arg_0: &PtsDts) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &PtsDts) -> bool[src]
This method tests for !=.