Merge pull request #231 from a1phyr/remove_archive_bounds
Remove `io::Read + io::Seek` bound to `ZipArchive`
This commit is contained in:
commit
92799661a7
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ mod ffi {
|
|||
/// }
|
||||
/// ```
|
||||
#[derive(Clone, Debug)]
|
||||
pub struct ZipArchive<R: Read + io::Seek> {
|
||||
pub struct ZipArchive<R> {
|
||||
reader: R,
|
||||
files: Vec<ZipFileData>,
|
||||
names_map: HashMap<String, usize>,
|
||||
|
|
Loading…
Add table
Reference in a new issue