Enum miniz_oxide::inflate::TINFLStatus [−][src]
#[repr(i8)] pub enum TINFLStatus { FailedCannotMakeProgress, BadParam, Adler32Mismatch, Failed, Done, NeedsMoreInput, HasMoreOutput, }
Expand description
Return status codes.
Variants
More input data was expected, but the caller indicated that there was more data, so the input stream is likely truncated.
One or more of the input parameters were invalid.
The decompression went fine, but the adler32 checksum did not match the one provided in the header.
Failed to decompress due to invalid data.
Finished decomression without issues.
The decompressor needs more input data to continue decompressing.
There is still pending data that didn’t fit in the output buffer.
Implementations
Trait Implementations
Auto Trait Implementations
Blanket Implementations
Mutably borrows from an owned value. Read more