Module zstd::bulk

source ·
Expand description

Compress and decompress data in bulk.

These methods process all the input data at once. It is therefore best used with relatively small blocks (like small network packets).

Structs§

  • Allows to compress independently multiple chunks of data.
  • Allows to decompress independently multiple blocks of data.

Functions§

  • Compresses a block of data and returns the compressed result.
  • Compresses a single block of data to the given destination buffer.
  • Decompresses a block of data and returns the decompressed result.
  • Deompress a single block of data to the given destination buffer.