pub struct DecompressError {
pub status: TINFLStatus,
pub output: Vec<u8>,
}
Expand description
A copy of miniz_oxide::inflate::DecompressError.
We use our copy instead of the miniz_oxide type directly
so that we don’t have to bump semver every time miniz_oxide
does.
Fields§
§status: TINFLStatus
Decompressor status on failure. See TINFLStatus for details.
output: Vec<u8>
The currently decompressed data if any.
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()
Source§impl From<DecompressError> for Error
impl From<DecompressError> for Error
Source§fn from(e: DecompressError) -> Self
fn from(e: DecompressError) -> Self
Converts to this type from the input type.
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