Enum mpeg2ts_reader::pes::DataAlignment
source · pub enum DataAlignment {
Aligned,
NotAligned,
}Expand description
Indicates if the start of some ‘unit’ of Elementary Stream content is immediately at the start of the PES packet payload.
Returned by
PesParsedContents.data_alignment_indicator()
Variants§
Aligned
Access Units are aligned to the start of the PES packet payload
NotAligned
Access Units are might not be aligned to the start of the PES packet payload
Trait Implementations§
source§impl Debug for DataAlignment
impl Debug for DataAlignment
source§impl PartialEq for DataAlignment
impl PartialEq for DataAlignment
source§fn eq(&self, other: &DataAlignment) -> bool
fn eq(&self, other: &DataAlignment) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for DataAlignment
impl StructuralPartialEq for DataAlignment
Auto Trait Implementations§
impl RefUnwindSafe for DataAlignment
impl Send for DataAlignment
impl Sync for DataAlignment
impl Unpin for DataAlignment
impl UnwindSafe for DataAlignment
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more