Enum mpeg2ts_reader::pes::PtsDts
source · pub enum PtsDts {
None,
PtsOnly(Result<Timestamp, TimestampError>),
Invalid,
Both {
pts: Result<Timestamp, TimestampError>,
dts: Result<Timestamp, TimestampError>,
},
}Variants
None
PtsOnly(Result<Timestamp, TimestampError>)
Invalid
Both
Trait Implementations
impl StructuralPartialEq for PtsDts
Auto Trait Implementations
impl RefUnwindSafe for PtsDts
impl Send for PtsDts
impl Sync for PtsDts
impl Unpin for PtsDts
impl UnwindSafe for PtsDts
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more