diff --git a/src/reader.rs b/src/reader.rs index b3b12b0b..fbb06c85 100644 --- a/src/reader.rs +++ b/src/reader.rs @@ -44,6 +44,18 @@ pub struct ZipReader names_map: HashMap, } +pub struct ZipFileIterator<'a> +{ + inner: ::std::slice::Iter<'a, ZipFile>, +} + +impl<'a> Iterator for ZipFileIterator<'a> { + type Item = &'a ZipFile; + fn next(&mut self) -> Option<&'a ZipFile> { + self.inner.next() + } +} + fn unsupported_zip_error(detail: &'static str) -> ZipResult { Err(ZipError::UnsupportedZipFile(detail)) @@ -76,9 +88,9 @@ impl ZipReader } /// An iterator over the information of all contained files. - pub fn files(&self) -> ::std::slice::Iter + pub fn files(&self) -> ZipFileIterator { - (&*self.files).iter() + ZipFileIterator { inner: (&*self.files).iter(), } } /// Search for a file entry by name