Module miniz_oxide::inflate[][src]

This module contains functionality for decompression.

Modules

core

Streaming decompression functionality.

stream

Extra streaming decompression functionality.

Enums

TINFLStatus

Return status codes.

Functions

decompress_to_vec

Decompress the deflate-encoded data in input to a vector.

decompress_to_vec_with_limit

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_to_vec_zlib

Decompress the deflate-encoded data (with a zlib wrapper) in input to a vector.

decompress_to_vec_zlib_with_limit

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.