fix: Clippy should implement trait
This commit is contained in:
parent
f3d683a64c
commit
503eda67c3
1 changed files with 22 additions and 26 deletions
48
src/write.rs
48
src/write.rs
|
@ -110,31 +110,6 @@ pub struct FileOptions {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl FileOptions {
|
impl FileOptions {
|
||||||
/// Construct a new FileOptions object
|
|
||||||
pub fn default() -> FileOptions {
|
|
||||||
FileOptions {
|
|
||||||
#[cfg(any(
|
|
||||||
feature = "deflate",
|
|
||||||
feature = "deflate-miniz",
|
|
||||||
feature = "deflate-zlib"
|
|
||||||
))]
|
|
||||||
compression_method: CompressionMethod::Deflated,
|
|
||||||
#[cfg(not(any(
|
|
||||||
feature = "deflate",
|
|
||||||
feature = "deflate-miniz",
|
|
||||||
feature = "deflate-zlib"
|
|
||||||
)))]
|
|
||||||
compression_method: CompressionMethod::Stored,
|
|
||||||
compression_level: None,
|
|
||||||
#[cfg(feature = "time")]
|
|
||||||
last_modified_time: DateTime::from_time(OffsetDateTime::now_utc()).unwrap_or_default(),
|
|
||||||
#[cfg(not(feature = "time"))]
|
|
||||||
last_modified_time: DateTime::default(),
|
|
||||||
permissions: None,
|
|
||||||
large_file: false,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// 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 the deflate compression feature is
|
||||||
|
@ -198,8 +173,29 @@ impl FileOptions {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Default for FileOptions {
|
impl Default for FileOptions {
|
||||||
|
/// Construct a new FileOptions object
|
||||||
fn default() -> Self {
|
fn default() -> Self {
|
||||||
Self::default()
|
Self {
|
||||||
|
#[cfg(any(
|
||||||
|
feature = "deflate",
|
||||||
|
feature = "deflate-miniz",
|
||||||
|
feature = "deflate-zlib"
|
||||||
|
))]
|
||||||
|
compression_method: CompressionMethod::Deflated,
|
||||||
|
#[cfg(not(any(
|
||||||
|
feature = "deflate",
|
||||||
|
feature = "deflate-miniz",
|
||||||
|
feature = "deflate-zlib"
|
||||||
|
)))]
|
||||||
|
compression_method: CompressionMethod::Stored,
|
||||||
|
compression_level: None,
|
||||||
|
#[cfg(feature = "time")]
|
||||||
|
last_modified_time: DateTime::from_time(OffsetDateTime::now_utc()).unwrap_or_default(),
|
||||||
|
#[cfg(not(feature = "time"))]
|
||||||
|
last_modified_time: DateTime::default(),
|
||||||
|
permissions: None,
|
||||||
|
large_file: false,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue