Enum deflate::Compression
source · [−]pub enum Compression {
Fast,
Default,
Best,
}
Expand description
An enum describing the level of compression to be used by the encoder
Higher compression ratios will take longer to encode.
This is a simplified interface to specify a compression level.
See also CompressionOptions
which provides for
tweaking the settings more finely.
Variants
Fast
Fast minimal compression (CompressionOptions::fast()
).
Default
Default level (CompressionOptions::default()
).
Best
Higher compression level (CompressionOptions::high()
).
Best in this context isn’t actually the highest possible level
the encoder can do, but is meant to emulate the Best
setting in the Flate2
library.
Trait Implementations
sourceimpl Clone for Compression
impl Clone for Compression
sourcefn clone(&self) -> Compression
fn clone(&self) -> Compression
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 Compression
impl Debug for Compression
sourceimpl Default for Compression
impl Default for Compression
sourcefn default() -> Compression
fn default() -> Compression
Returns the “default value” for a type. Read more
sourceimpl From<Compression> for CompressionOptions
impl From<Compression> for CompressionOptions
sourcefn from(compression: Compression) -> CompressionOptions
fn from(compression: Compression) -> CompressionOptions
Converts to this type from the input type.
sourceimpl Hash for Compression
impl Hash for Compression
sourceimpl Ord for Compression
impl Ord for Compression
sourceimpl PartialEq<Compression> for Compression
impl PartialEq<Compression> for Compression
sourceimpl PartialOrd<Compression> for Compression
impl PartialOrd<Compression> for Compression
sourcefn partial_cmp(&self, other: &Compression) -> Option<Ordering>
fn partial_cmp(&self, other: &Compression) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Copy for Compression
impl Eq for Compression
impl StructuralEq for Compression
impl StructuralPartialEq for Compression
Auto Trait Implementations
impl RefUnwindSafe for Compression
impl Send for Compression
impl Sync for Compression
impl Unpin for Compression
impl UnwindSafe for Compression
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
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.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more