Enum deflate::Compression
[−]
[src]
pub enum Compression { Fast, Default, Best, }
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
impl Clone for Compression
[src]
fn clone(&self) -> Compression
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl Copy for Compression
[src]
impl Debug for Compression
[src]
impl Eq for Compression
[src]
impl PartialEq for Compression
[src]
fn eq(&self, __arg_0: &Compression) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0
This method tests for !=
.
impl Ord for Compression
[src]
fn cmp(&self, __arg_0: &Compression) -> Ordering
This method returns an Ordering
between self
and other
. Read more
fn max(self, other: Self) -> Self
ord_max_min
)Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
ord_max_min
)Compares and returns the minimum of two values. Read more
impl PartialOrd for Compression
[src]
fn partial_cmp(&self, __arg_0: &Compression) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, other: &Rhs) -> bool
1.0.0
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, other: &Rhs) -> bool
1.0.0
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, other: &Rhs) -> bool
1.0.0
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, other: &Rhs) -> bool
1.0.0
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl Hash for Compression
[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)
Feeds this value into the given [Hasher
]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl Default for Compression
[src]
fn default() -> Compression
Returns the "default value" for a type. Read more