Implement size_hint on our iterator wrapper
This commit is contained in:
parent
b65f729bbe
commit
e67f019517
1 changed files with 3 additions and 0 deletions
|
@ -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<usize>) {
|
||||
self.inner.size_hint()
|
||||
}
|
||||
}
|
||||
|
||||
fn unsupported_zip_error<T>(detail: &'static str) -> ZipResult<T>
|
||||
|
|
Loading…
Add table
Reference in a new issue