Module miniz_oxide::inflate

source ·
Expand description

This module contains functionality for decompression.

Modules

Streaming decompression functionality.
Extra streaming decompression functionality.

Enums

Return status codes.

Functions

Decompress one or more source slices from an iterator into the output slice.
Decompress the deflate-encoded data in input to a vector.
Decompress the deflate-encoded data in input to a vector. The vector is grown to at most max_size bytes; if the data does not fit in that size, TINFLStatus::HasMoreOutput error is returned.
Decompress the deflate-encoded data (with a zlib wrapper) in input to a vector.
Decompress the deflate-encoded data (with a zlib wrapper) in input to a vector. The vector is grown to at most max_size bytes; if the data does not fit in that size, TINFLStatus::HasMoreOutput error is returned.