aboutsummaryrefslogtreecommitdiff
path: root/src/zip/file_driver.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/zip/file_driver.rs')
-rw-r--r--src/zip/file_driver.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/zip/file_driver.rs b/src/zip/file_driver.rs
index 47b4242..51075e4 100644
--- a/src/zip/file_driver.rs
+++ b/src/zip/file_driver.rs
@@ -1,8 +1,7 @@
1use crate::driver::FileDriver; 1use crate::driver::FileDriver;
2use crate::zip::{ZipError, ZipFileInfo, ZipResult}; 2use crate::zip::{ZipError, ZipFileInfo, ZipResult};
3use std::io::{ 3use std::io::{
4 Error as IoError, ErrorKind as IoErrorKind, Read, Result as IoResult, Seek, SeekFrom, Take, 4 Error as IoError, ErrorKind as IoErrorKind, Read, Result as IoResult, Seek, SeekFrom, Write,
5 Write,
6}; 5};
7 6
8pub struct ZipFile<'d, Io> { 7pub struct ZipFile<'d, Io> {