pub enum DecompressError {
Truncated(Error),
Io(Error),
TooLarge {
limit: usize,
},
}Expand description
Error produced by Decompressor
implementations.
Variants§
Truncated(Error)
The stream ended before a complete frame was delivered.
Io(Error)
The underlying decoder failed.
TooLarge
A decoded frame exceeded the safety output limit.
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
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 !RefUnwindSafe for DecompressError
impl !UnwindSafe for DecompressError
impl Freeze for DecompressError
impl Send for DecompressError
impl Sync for DecompressError
impl Unpin for DecompressError
impl UnsafeUnpin 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