Enum miniz_oxide::deflate::CompressionLevel
source · [−]#[repr(i32)]
pub enum CompressionLevel {
NoCompression,
BestSpeed,
BestCompression,
UberCompression,
DefaultLevel,
DefaultCompression,
}
Expand description
How much processing the compressor should do to compress the data.
NoCompression
and Bestspeed
have special meanings, the other levels determine the number
of checks for matches in the hash chains and whether to use lazy or greedy parsing.
Variants
NoCompression
Don’t do any compression, only output uncompressed blocks.
BestSpeed
Fast compression. Uses a special compression routine that is optimized for speed.
BestCompression
Slow/high compression. Do a lot of checks to try to find good matches.
UberCompression
Even more checks, can be very slow.
DefaultLevel
Default compromise between speed and compression.
DefaultCompression
Use the default compression level.
Trait Implementations
sourceimpl Clone for CompressionLevel
impl Clone for CompressionLevel
sourcefn clone(&self) -> CompressionLevel
fn clone(&self) -> CompressionLevel
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for CompressionLevel
impl Debug for CompressionLevel
sourceimpl Hash for CompressionLevel
impl Hash for CompressionLevel
sourceimpl PartialEq<CompressionLevel> for CompressionLevel
impl PartialEq<CompressionLevel> for CompressionLevel
impl Copy for CompressionLevel
impl Eq for CompressionLevel
impl StructuralEq for CompressionLevel
impl StructuralPartialEq for CompressionLevel
Auto Trait Implementations
impl RefUnwindSafe for CompressionLevel
impl Send for CompressionLevel
impl Sync for CompressionLevel
impl Unpin for CompressionLevel
impl UnwindSafe for CompressionLevel
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more