Enum mpeg2ts_reader::demultiplex::DemuxError
source · pub enum DemuxError {
NotEnoughData {
field: &'static str,
expected: usize,
actual: usize,
},
}Expand description
TODO: this type does not belong here
Variants§
NotEnoughData
Fields
The transport stream has a syntax error that means there was not enough data present to parse the requested structure.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for DemuxError
impl Send for DemuxError
impl Sync for DemuxError
impl Unpin for DemuxError
impl UnwindSafe for DemuxError
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