Remove io::Read + io::Seek
bound to ZipArchive
This commit is contained in:
parent
5290d687b2
commit
7a05b1a783
1 changed files with 1 additions and 1 deletions
|
@ -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>,
|
||||||
|
|
Loading…
Add table
Reference in a new issue