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 minimal compression (CompressionOptions::fast()).

Default level (CompressionOptions::default()).

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]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Compression
[src]

impl Debug for Compression
[src]

Formats the value using the given formatter. Read more

impl Eq for Compression
[src]

impl PartialEq for Compression
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Ord for Compression
[src]

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl PartialOrd for Compression
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

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]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Default for Compression
[src]

Returns the "default value" for a type. Read more

impl From<Compression> for CompressionOptions
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Compression

impl Sync for Compression