Crate numcodecs_zlib

Source
Expand description

CI Status MSRV Latest Version Rust Doc Crate Rust Doc Main

Zlib codec implementation for the numcodecs API.

Structs§

ZlibCodec
Codec providing compression using Zlib
ZlibDecodeError
Opaque error for when decoding with Zlib fails
ZlibHeaderError
Opaque error for when encoding or decoding the header fails

Enums§

ZlibCodecError
Errors that may occur when applying the ZlibCodec.
ZlibLevel
Zlib compression level.

Functions§

compress
Compress the array using Zlib with the provided level.
decompress
Decompress the encoded data into an array using Zlib.
decompress_into
Decompress the encoded data into a decoded array using Zlib.