fix: Derive Debug for ZipWriter

This commit is contained in:
Chris Hennick 2024-05-27 16:58:02 -07:00
parent a7840b3468
commit 48b1adb64b
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -120,6 +120,7 @@ pub(crate) mod zip_writer {
/// # }
/// # doit().unwrap();
/// ```
#[derive(Debug)]
pub struct ZipWriter<W: Write + Seek> {
pub(super) inner: GenericZipWriter<W>,
pub(super) files: IndexMap<Box<str>, ZipFileData>,
@ -142,7 +143,7 @@ use crate::zipcrypto::ZipCryptoKeys;
use crate::CompressionMethod::Stored;
pub use zip_writer::ZipWriter;
#[derive(Default)]
#[derive(Default, Debug)]
struct ZipWriterStats {
hasher: Hasher,
start: u64,