Wrap the files() iterator
This way we can change the inner API without breaking the outer
This commit is contained in:
parent
bfc370eda3
commit
5f35da5ca4
1 changed files with 14 additions and 2 deletions
|
@ -44,6 +44,18 @@ pub struct ZipReader<T>
|
|||
names_map: HashMap<String, usize>,
|
||||
}
|
||||
|
||||
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<T>(detail: &'static str) -> ZipResult<T>
|
||||
{
|
||||
Err(ZipError::UnsupportedZipFile(detail))
|
||||
|
@ -76,9 +88,9 @@ impl<T: Read+io::Seek> ZipReader<T>
|
|||
}
|
||||
|
||||
/// An iterator over the information of all contained files.
|
||||
pub fn files(&self) -> ::std::slice::Iter<ZipFile>
|
||||
pub fn files(&self) -> ZipFileIterator
|
||||
{
|
||||
(&*self.files).iter()
|
||||
ZipFileIterator { inner: (&*self.files).iter(), }
|
||||
}
|
||||
|
||||
/// Search for a file entry by name
|
||||
|
|
Loading…
Add table
Reference in a new issue