Merge pull request #195 from mvdnes/error-impl

Reintroduce error impl
This commit is contained in:
Plecra 2020-09-09 19:25:30 +01:00 committed by GitHub
commit 63a3e89ef8
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -34,3 +34,9 @@ pub enum ZipError {
#[error("invalid password for file in archive")]
InvalidPassword,
}
impl From<ZipError> for io::Error {
fn from(err: ZipError) -> io::Error {
io::Error::new(io::ErrorKind::Other, err)
}
}