pub enum Kind {
SyncByte(u8),
Buf(usize, usize),
PESStartCode(u32),
SectionSyntaxIndicatorNotSet,
AnnexA2EmptyBuf,
AnnexA2UnsupportedEncoding,
AnnexA2Decode,
AnnexA2TableA3Unexpected(u8),
AnnexA2TableA4Buf(usize, usize),
AnnexA2TableA4Unexpected(u8),
AnnexCBuf(usize, usize),
Io(Error),
}Variants§
SyncByte(u8)
Buf(usize, usize)
PESStartCode(u32)
SectionSyntaxIndicatorNotSet
AnnexA2EmptyBuf
AnnexA2UnsupportedEncoding
AnnexA2Decode
AnnexA2TableA3Unexpected(u8)
AnnexA2TableA4Buf(usize, usize)
AnnexA2TableA4Unexpected(u8)
AnnexCBuf(usize, usize)
Io(Error)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Kind
impl !RefUnwindSafe for Kind
impl Send for Kind
impl Sync for Kind
impl Unpin for Kind
impl !UnwindSafe for Kind
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