Skip to main content

structured_zstd/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 dictionary::Dictionary;
8pub use frame_decoder::{BlockDecodingStrategy, FrameDecoder};
9pub use streaming_decoder::StreamingDecoder;
10
11pub(crate) mod block_decoder;
12pub(crate) mod decode_buffer;
13pub(crate) mod dictionary;
14pub(crate) mod frame;
15pub(crate) mod literals_section_decoder;
16mod ringbuffer;
17#[allow(dead_code)]
18pub(crate) mod scratch;
19pub(crate) mod sequence_execution;
20pub(crate) mod sequence_section_decoder;