aboutsummaryrefslogtreecommitdiff
path: root/vendor/flate2/src/ffi/mod.rs
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
committerValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
commita990de90fe41456a23e58bd087d2f107d321f3a1 (patch)
tree15afc392522a9e85dc3332235e311b7d39352ea9 /vendor/flate2/src/ffi/mod.rs
parent3d48cd3f81164bbfc1a755dc1d4a9a02f98c8ddd (diff)
downloadfparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.tar.xz
fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.zip
Deleted vendor folder
Diffstat (limited to 'vendor/flate2/src/ffi/mod.rs')
-rw-r--r--vendor/flate2/src/ffi/mod.rs52
1 files changed, 0 insertions, 52 deletions
diff --git a/vendor/flate2/src/ffi/mod.rs b/vendor/flate2/src/ffi/mod.rs
deleted file mode 100644
index 20b3cae..0000000
--- a/vendor/flate2/src/ffi/mod.rs
+++ /dev/null
@@ -1,52 +0,0 @@
-//! This module contains backend-specific code.
-
-use crate::mem::{CompressError, DecompressError, FlushCompress, FlushDecompress, Status};
-use crate::Compression;
-
-/// Traits specifying the interface of the backends.
-///
-/// Sync + Send are added as a condition to ensure they are available
-/// for the frontend.
-pub trait Backend: Sync + Send {
- fn total_in(&self) -> u64;
- fn total_out(&self) -> u64;
-}
-
-pub trait InflateBackend: Backend {
- fn make(zlib_header: bool, window_bits: u8) -> Self;
- fn decompress(
- &mut self,
- input: &[u8],
- output: &mut [u8],
- flush: FlushDecompress,
- ) -> Result<Status, DecompressError>;
- fn reset(&mut self, zlib_header: bool);
-}
-
-pub trait DeflateBackend: Backend {
- fn make(level: Compression, zlib_header: bool, window_bits: u8) -> Self;
- fn compress(
- &mut self,
- input: &[u8],
- output: &mut [u8],
- flush: FlushCompress,
- ) -> Result<Status, CompressError>;
- fn reset(&mut self);
-}
-
-// Default to Rust implementation unless explicitly opted in to a different backend.
-#[cfg(feature = "any_zlib")]
-mod c;
-#[cfg(feature = "any_zlib")]
-pub use self::c::*;
-
-#[cfg(all(not(feature = "any_zlib"), feature = "miniz_oxide"))]
-mod rust;
-#[cfg(all(not(feature = "any_zlib"), feature = "miniz_oxide"))]
-pub use self::rust::*;
-
-impl std::fmt::Debug for ErrorMessage {
- fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
- self.get().fmt(f)
- }
-}