fix: Derive Debug
for ZipWriter
This commit is contained in:
parent
a7840b3468
commit
48b1adb64b
1 changed files with 2 additions and 1 deletions
|
@ -120,6 +120,7 @@ pub(crate) mod zip_writer {
|
||||||
/// # }
|
/// # }
|
||||||
/// # doit().unwrap();
|
/// # doit().unwrap();
|
||||||
/// ```
|
/// ```
|
||||||
|
#[derive(Debug)]
|
||||||
pub struct ZipWriter<W: Write + Seek> {
|
pub struct ZipWriter<W: Write + Seek> {
|
||||||
pub(super) inner: GenericZipWriter<W>,
|
pub(super) inner: GenericZipWriter<W>,
|
||||||
pub(super) files: IndexMap<Box<str>, ZipFileData>,
|
pub(super) files: IndexMap<Box<str>, ZipFileData>,
|
||||||
|
@ -142,7 +143,7 @@ use crate::zipcrypto::ZipCryptoKeys;
|
||||||
use crate::CompressionMethod::Stored;
|
use crate::CompressionMethod::Stored;
|
||||||
pub use zip_writer::ZipWriter;
|
pub use zip_writer::ZipWriter;
|
||||||
|
|
||||||
#[derive(Default)]
|
#[derive(Default, Debug)]
|
||||||
struct ZipWriterStats {
|
struct ZipWriterStats {
|
||||||
hasher: Hasher,
|
hasher: Hasher,
|
||||||
start: u64,
|
start: u64,
|
||||||
|
|
Loading…
Add table
Reference in a new issue