Enum cab::CompressionType[][src]

pub enum CompressionType {
    None,
    MsZip,
    Quantum(u16u16),
    Lzx(u16),
}

A scheme for compressing data within the cabinet.

Variants

No compression.

MSZIP compression. MSZIP is described further in MS-MCI.

Quantum compression with the given level and memory.

LZX compression with the given window size. The LZX compression scheme is described further in MS-PATCH.

Trait Implementations

impl Clone for CompressionType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for CompressionType
[src]

impl Debug for CompressionType
[src]

Formats the value using the given formatter. Read more

impl Hash for CompressionType
[src]

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

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

impl Eq for CompressionType
[src]

impl PartialEq for CompressionType
[src]

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

This method tests for !=.

Auto Trait Implementations