This commit is contained in:
Chris Hennick 2023-05-01 16:50:36 -07:00
parent de0cbc039e
commit 28f045e17e
No known key found for this signature in database
GPG key ID: 25653935CC8B6C74

View file

@ -130,10 +130,11 @@ impl FileOptions {
#[cfg(fuzzing)] #[cfg(fuzzing)]
/// Changes the compression method to the default if it would otherwise be no compression. /// Changes the compression method to the default if it would otherwise be no compression.
pub fn force_compression(mut self) { pub fn force_compression(mut self) -> FileOptions {
if self.compression_method == CompressionMethod::Stored { if self.compression_method == CompressionMethod::Stored {
self.compression_method = CompressionMethod::Deflated; self.compression_method = CompressionMethod::Deflated;
} }
self
} }
/// Set the compression level for the new file /// Set the compression level for the new file