Module miniz_oxide::inflate
source ยท Expand description
This module contains functionality for decompression.
Modulesยง
- Streaming decompression functionality.
- output_buffer ๐
- Extra streaming decompression functionality.
Structsยง
- Struct return when decompress_to_vec functions fail.
Enumsยง
- Return status codes.
Constantsยง
- TINFL_STATUS_DONE ๐
- TINFL_STATUS_FAILED ๐
Functionsยง
- decompress_error ๐
- Decompress one or more source slices from an iterator into the output slice.
- Decompress the deflate-encoded data in
input
to a vector. - Backend of various to-
Vec
decompressions. - Decompress the deflate-encoded data in
input
to a vector. - 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 mostmax_size
bytes; if the data does not fit in that size, the error struct will contain the statusTINFLStatus::HasMoreOutput
and the data that was decompressed on failure.