Remove io::Read + io::Seek bound to ZipArchive

This commit is contained in:
Benoît du Garreau 2021-04-10 14:13:57 +02:00
parent 5290d687b2
commit 7a05b1a783

View file

@ -47,7 +47,7 @@ mod ffi {
/// } /// }
/// ``` /// ```
#[derive(Clone, Debug)] #[derive(Clone, Debug)]
pub struct ZipArchive<R: Read + io::Seek> { pub struct ZipArchive<R> {
reader: R, reader: R,
files: Vec<ZipFileData>, files: Vec<ZipFileData>,
names_map: HashMap<String, usize>, names_map: HashMap<String, usize>,