#[non_exhaustive]
pub enum CompressionMethod {
    Stored,
    Deflated,
    Bzip2,
    Aes,
    Zstd,
    Unsupported(u16),
}
Expand description

Identifies the storage format used to compress a file within a ZIP archive.

Each file’s compression method is stored alongside it, allowing the contents to be read without context.

When creating ZIP files, you may choose the method to use with crate::write::FileOptions::compression_method

Variants (Non-exhaustive)

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.

Stored

Store the file as is

Deflated

Compress the file using Deflate

Bzip2

Compress the file using BZIP2

Aes

Encrypted using AES.

The actual compression method has to be taken from the AES extra data field or from ZipFileData.

Zstd

Compress the file using ZStandard

Unsupported(u16)

👎Deprecated since 0.5.7: use the constants instead

Unsupported compression method

Implementations

All compression methods defined for the ZIP format

👎Deprecated since 0.5.7: use a constant to construct a compression method

Converts an u16 to its corresponding CompressionMethod

👎Deprecated since 0.5.7: to match on other compression methods, use a constant

Converts a CompressionMethod to a u16

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Formats the value using the given formatter. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
Converts the given value to a String. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.