Expand description
Types which operate over Read streams, both encoders and decoders for
various formats.
Note that the read decoder types may read past the end of the compressed
data while decoding. If the caller requires subsequent reads to start
immediately following the compressed data wrap the Read type in a
BufReader and use the BufReader with the equivalent decoder from the
bufread module and also for the subsequent reads.
Structsยง
- Deflate
Decoder - A DEFLATE decoder, or decompressor.
- Deflate
Encoder - A DEFLATE encoder, or compressor.
- GzDecoder
- A decoder for a single member of a gzip file.
- GzEncoder
- A gzip streaming encoder
- Multi
GzDecoder - A gzip streaming decoder that decodes a gzip file that may have multiple members.
- Zlib
Decoder - A ZLIB decoder, or decompressor.
- Zlib
Encoder - A ZLIB encoder, or compressor.