From 6d5f8f046b3b24e50cb1a0e7751c6bc9170ed9d1 Mon Sep 17 00:00:00 2001 From: Igor Tolmachev Date: Sat, 29 Jun 2024 22:53:47 +0900 Subject: Add `Clone` derive and edit trait types --- src/zip/file_driver.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/zip/file_driver.rs') 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 @@ use crate::driver::FileDriver; use crate::zip::{ZipError, ZipFileInfo, ZipResult}; use std::io::{ - Error as IoError, ErrorKind as IoErrorKind, Read, Result as IoResult, Seek, SeekFrom, Take, - Write, + Error as IoError, ErrorKind as IoErrorKind, Read, Result as IoResult, Seek, SeekFrom, Write, }; pub struct ZipFile<'d, Io> { -- cgit v1.2.3