ruzstd/decoding/mod.rs
1//! Structures and utilities used for decoding zstd formatted data
2
3pub mod errors;
4mod frame_decoder;
5mod streaming_decoder;
6
7pub use frame_decoder::{BlockDecodingStrategy, FrameDecoder};
8pub use streaming_decoder::StreamingDecoder;
9
10pub(crate) mod block_decoder;
11pub(crate) mod decode_buffer;
12pub(crate) mod dictionary;
13pub(crate) mod frame;
14pub(crate) mod literals_section_decoder;
15mod ringbuffer;
16#[allow(dead_code)]
17pub(crate) mod scratch;
18pub(crate) mod sequence_execution;
19pub(crate) mod sequence_section_decoder;