Update doc comment about compression_method
This commit is contained in:
parent
60553541ed
commit
7b23b3212a
1 changed files with 4 additions and 2 deletions
|
@ -231,8 +231,10 @@ impl arbitrary::Arbitrary<'_> for FileOptions {
|
||||||
impl FileOptions {
|
impl FileOptions {
|
||||||
/// Set the compression method for the new file
|
/// Set the compression method for the new file
|
||||||
///
|
///
|
||||||
/// The default is `CompressionMethod::Deflated`. If the deflate compression feature is
|
/// The default is `CompressionMethod::Deflated` if it is enabled. If not,
|
||||||
/// disabled, `CompressionMethod::Stored` becomes the default.
|
/// `CompressionMethod::Bzip2` is the default if it is enabled. If neither `bzip2` nor `deflate`
|
||||||
|
/// is enabled, `CompressionMethod::Zlib` is the default. If all else fails,
|
||||||
|
/// `CompressionMethod::Stored` becomes the default and files are written uncompressed.
|
||||||
#[must_use]
|
#[must_use]
|
||||||
pub fn compression_method(mut self, method: CompressionMethod) -> FileOptions {
|
pub fn compression_method(mut self, method: CompressionMethod) -> FileOptions {
|
||||||
self.compression_method = method;
|
self.compression_method = method;
|
||||||
|
|
Loading…
Add table
Reference in a new issue