[−][src]Module snap::read
This module provides two std::io::Read implementations:
read::FrameDecoderwraps anotherstd::io::Readimplemenation, and decompresses data encoded using the Snappy frame format. Use this if you have a compressed data source and wish to read it as uncompressed data.read::FrameEncoderwraps anotherstd::io::Readimplemenation, and compresses data encoded using the Snappy frame format. Use this if you have uncompressed data source and wish to read it as compressed data.
Typically, read::FrameDecoder is the version that you'll want.
Structs
| FrameDecoder | A reader for decompressing a Snappy stream. |
| FrameEncoder | A reader for compressing data using snappy as it is read. |