Crate miniz_oxide
A pure rust replacement for the miniz DEFLATE/zlib encoder/decoder. Used a rust back-end for the flate2 crate.
Usage
Simple compression/decompression:
use decompress_to_vec;
use compress_to_vec;
# roundtrip;
Modules
Structs
- StreamResult A structure containing the result of a call to the inflate or deflate streaming functions.
Enums
- DataFormat How compressed data is wrapped.
- MZError A list of miniz failed status codes.
- MZFlush A list of flush types.
- MZStatus A list of miniz successful status codes.
Type Aliases
-
MZResult
Resultalias for all miniz status codes both successful and failed.