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
FastFast minimal compression (CompressionOptions::fast()).
DefaultDefault level (CompressionOptions::default()).
BestHigher 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]
impl Clone for Compressionfn clone(&self) -> Compression[src]
fn clone(&self) -> CompressionReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Copy for Compression[src]
impl Copy for Compressionimpl Debug for Compression[src]
impl Debug for Compressionfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Eq for Compression[src]
impl Eq for Compressionimpl PartialEq for Compression[src]
impl PartialEq for Compressionfn eq(&self, other: &Compression) -> bool[src]
fn eq(&self, other: &Compression) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
#[must_use]
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn ne(&self, other: &Rhs) -> boolThis method tests for !=.
impl Ord for Compression[src]
impl Ord for Compressionfn cmp(&self, other: &Compression) -> Ordering[src]
fn cmp(&self, other: &Compression) -> OrderingThis method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
fn max(self, other: Self) -> SelfCompares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> SelfCompares and returns the minimum of two values. Read more
impl PartialOrd for Compression[src]
impl PartialOrd for Compressionfn partial_cmp(&self, other: &Compression) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &Compression) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn lt(&self, other: &Rhs) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Hash for Compression[src]
impl Hash for Compressionfn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash<__H: Hasher>(&self, state: &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[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, Feeds a slice of this type into the given [Hasher]. Read more
impl Default for Compression[src]
impl Default for Compressionfn default() -> Compression[src]
fn default() -> CompressionReturns the "default value" for a type. Read more
impl From<Compression> for CompressionOptions[src]
impl From<Compression> for CompressionOptionsfn from(compression: Compression) -> CompressionOptions[src]
fn from(compression: Compression) -> CompressionOptionsPerforms the conversion.
Auto Trait Implementations
impl Send for Compression
impl Send for Compressionimpl Sync for Compression
impl Sync for Compression