pub enum BitStreamError {
AddBits(String),
FlushBits(String),
StreamPoisoned(String),
NoEndMarkFound,
BitsOverflow(String),
LookFailed,
EmptyStream,
ReadOverflow,
}
Variants§
AddBits(String)
FlushBits(String)
StreamPoisoned(String)
NoEndMarkFound
BitsOverflow(String)
LookFailed
EmptyStream
ReadOverflow
Trait Implementations§
Source§impl Debug for BitStreamError
impl Debug for BitStreamError
Source§impl Display for BitStreamError
impl Display for BitStreamError
Source§impl From<BitStreamError> for Error
impl From<BitStreamError> for Error
Source§fn from(err: BitStreamError) -> Self
fn from(err: BitStreamError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BitStreamError
impl RefUnwindSafe for BitStreamError
impl Send for BitStreamError
impl Sync for BitStreamError
impl Unpin for BitStreamError
impl UnwindSafe for BitStreamError
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