pub enum DecompressError {
None,
Deflate,
HeatShrink11,
HeatShrink12,
MeatPackAlgorithm,
}
Expand description
Return type for decompress_data_block
.
Variants§
None
Unexpected length while taking data.
Deflate
Error decompressing, with the “Deflate
” algorithm.
HeatShrink11
Error decompressing, with the “HeatShrink11
” algorithm.
HeatShrink12
Error decompressing, with the “HeatShrink12
” algorithm.
MeatPackAlgorithm
Error decompressing, with the “MeatPackAlgorithm
” algorithm.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DecompressError
impl RefUnwindSafe for DecompressError
impl Send for DecompressError
impl Sync for DecompressError
impl Unpin for DecompressError
impl UnwindSafe for DecompressError
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