style: cargo fmt --all

This commit is contained in:
Chris Hennick 2024-05-05 18:43:40 -07:00
parent b3f9170f23
commit a8ec016b51
No known key found for this signature in database
GPG key ID: DA47AABA4961C509
2 changed files with 2 additions and 3 deletions

View file

@ -26,8 +26,7 @@
//!
//!
#![warn(missing_docs)]
#![allow(unexpected_cfgs)] /// Needed for cfg(fuzzing) on nightly as of 2024-05-06
#![allow(unexpected_cfgs)] // Needed for cfg(fuzzing) on nightly as of 2024-05-06
pub use crate::compression::{CompressionMethod, SUPPORTED_COMPRESSION_METHODS};
pub use crate::read::ZipArchive;
pub use crate::types::DateTime;

View file

@ -357,7 +357,7 @@ impl<R> ZipArchive<R> {
})
}
/// Total size of the files in the archive, if it can be known. Doesn't include directories or
/// Total size of the files in the archive, if it can be known. Doesn't include directories or
/// metadata.
pub fn decompressed_size(&self) -> Option<u128> {
let mut total = 0u128;