diff --git a/src/reader.rs b/src/reader.rs index 5bb0f856..1bae6bff 100644 --- a/src/reader.rs +++ b/src/reader.rs @@ -57,6 +57,9 @@ impl<'a> Iterator for ZipFileIterator<'a> { fn next(&mut self) -> Option<&'a ZipFile> { self.inner.next() } + fn size_hint(&self) -> (usize, Option) { + self.inner.size_hint() + } } fn unsupported_zip_error(detail: &'static str) -> ZipResult