diff --git a/Cargo.toml b/Cargo.toml index 0a4bb867..068127bc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "zip" -version = "0.1.5" +version = "0.1.6" authors = ["Mathijs van de Nes "] license = "MIT" repository = "https://github.com/mvdnes/zip-rs.git" diff --git a/src/result.rs b/src/result.rs index 29b608c8..d82259ea 100644 --- a/src/result.rs +++ b/src/result.rs @@ -1,8 +1,9 @@ //! Error types that can be emitted from this library -use std::io; +use std::convert; use std::error; use std::fmt; +use std::io; /// Generic result type with ZipError as its error variant pub type ZipResult = Result; @@ -45,7 +46,7 @@ impl ZipError } } -impl ::std::convert::From for ZipError +impl convert::From for ZipError { fn from(err: io::Error) -> ZipError { @@ -53,6 +54,14 @@ impl ::std::convert::From for ZipError } } +impl convert::From for io::Error +{ + fn from(err: ZipError) -> io::Error + { + io::Error::new(io::ErrorKind::Other, err) + } +} + impl fmt::Display for ZipError { fn fmt(&self, fmt: &mut fmt::Formatter) -> Result<(), fmt::Error>