Crate zstd [] [src]

Rust binding to the zstd library.

This crate provides:

  • An encoder to compress data using zstd and send the output to another write.
  • A decoder to read input data from a Read and decompress it.

Example

extern crate zstd;

use std::io;

fn main() {
    // Uncompress input and print the result.
    let mut decoder = zstd::Decoder::new(io::stdin()).unwrap();
    io::copy(&mut decoder, &mut io::stdout()).unwrap();
}

Modules

block

Methods to compress and decompress individual blocks.

dict

Train a dictionary from various sources.

Structs

AutoFinishEncoder

A wrapper around an Encoder<W> that finishes the stream on drop.

Decoder

A decoder that decompress input data from another Read.

Encoder

An encoder that compress and forward data to another writer.

Functions

decode_all

Decompress the given data as if using a Decoder.

encode_all

Compress all the given data as if using an Encoder.