ruzstd/blocks/mod.rs
1//! In a Zstandard frame, there's a frame header, followed by one or more *blocks*.
2//!
3//! A block contains data, and a header describing how that data is encoded, as well
4//! as other misc metadata.
5//!
6//! <https://github.com/facebook/zstd/blob/dev/doc/zstd_compression_format.md#blocks>
7
8pub mod block;
9pub mod literals_section;
10pub mod sequence_section;