pub enum DecompressError {
DestinationBufferTooSmall,
DecompressingError,
InternalError(i32),
IoError(Error),
}
Expand description
Error that can occur during decompression.
Variants§
DestinationBufferTooSmall
Error indicating that the destination buffer is too small to hold the decompressed data.
DecompressingError
Error indicating that the data could not be decompressed.
InternalError(i32)
blosc internal error.
IoError(Error)
An I/O error occurred while reading the compressed data.
Trait Implementations§
Source§impl Debug for DecompressError
impl Debug for DecompressError
Source§impl Display for DecompressError
impl Display for DecompressError
Source§impl Error for DecompressError
impl Error for DecompressError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
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