mirror of
https://git.proxmox.com/git/proxmox
synced 2025-06-03 06:26:27 +00:00

These structs are returned by the public method `Deflate{En,De}coder::builder`. Reported-by: Wolfgang Bumiller <w.bumiller@proxmox.com> Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
11 lines
219 B
Rust
11 lines
219 B
Rust
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
|
|
|
|
pub use deflate::{
|
|
DeflateDecoder, DeflateDecoderBuilder, DeflateEncoder, DeflateEncoderBuilder, Level,
|
|
};
|
|
|
|
mod deflate;
|
|
pub mod tar;
|
|
pub mod zip;
|
|
pub mod zstd;
|