Enum libflate::gzip::CompressionLevel [] [src]

pub enum CompressionLevel {
    Fastest,
    Slowest,
    Unknown,
}

Compression levels defined by the GZIP format.

Variants

Compressor used fastest algorithm.

Compressor used maximum compression, slowest algorithm.

No information about compression method.

Trait Implementations

impl Debug for CompressionLevel
[src]

Formats the value using the given formatter.

impl Clone for CompressionLevel
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CompressionLevel
[src]

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

This method tests for !=.

impl Eq for CompressionLevel
[src]

impl Hash for CompressionLevel
[src]

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

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

impl From<CompressionLevel> for CompressionLevel
[src]

Performs the conversion.