pub enum DecoderError {
BorkedExperimental(usize),
InternalConversion,
}Expand description
Decoder Errors
Variants§
BorkedExperimental(usize)
Decoder borked for some reason at the given position
InternalConversion
BUG Internal hex2dec conversion failed
Trait Implementations§
Source§impl Debug for DecoderError
impl Debug for DecoderError
Source§impl PartialEq for DecoderError
impl PartialEq for DecoderError
impl StructuralPartialEq for DecoderError
Auto Trait Implementations§
impl Freeze for DecoderError
impl RefUnwindSafe for DecoderError
impl Send for DecoderError
impl Sync for DecoderError
impl Unpin for DecoderError
impl UnwindSafe for DecoderError
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