Crate parity_snappy

Source
Expand description

Snappy compression bindings.

Structs§

Functions§

  • Compress a buffer using snappy.
  • Compress a buffer using snappy, writing the result into the given output buffer, growing it if necessary. Otherwise, returns the length of the compressed data.
  • Decompress a buffer using snappy. Will return an error if the buffer is not snappy-compressed.
  • Decompress a buffer using snappy, writing the result into the given output buffer, growing it if necessary. Will error if the input buffer is not snappy-compressed. Otherwise, returns the length of the decompressed data.
  • How large the given data will be when decompressed.
  • The maximum compressed length given a size.
  • Validate a compressed buffer. True if valid, false if not.