feat: Improve ErrorKind in ZipError to io::Error conversion (previously https://github.com/zip-rs/zip-old/pull/421)
This commit is contained in:
parent
9739df01dc
commit
686f6f1abf
2 changed files with 10 additions and 2 deletions
|
@ -4,4 +4,4 @@ fn main() {
|
|||
if var("CARGO_FEATURE_DEFLATE_MINIZ").is_ok() {
|
||||
println!("cargo:warning=Feature `deflate-miniz` is deprecated; replace it with `deflate`");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -79,7 +79,15 @@ impl ZipError {
|
|||
|
||||
impl From<ZipError> for io::Error {
|
||||
fn from(err: ZipError) -> io::Error {
|
||||
io::Error::new(io::ErrorKind::Other, err)
|
||||
let kind = match &err {
|
||||
ZipError::Io(err) => err.kind(),
|
||||
ZipError::InvalidArchive(_) => io::ErrorKind::InvalidData,
|
||||
ZipError::UnsupportedArchive(_) => io::ErrorKind::Unsupported,
|
||||
ZipError::FileNotFound => io::ErrorKind::NotFound,
|
||||
ZipError::InvalidPassword => io::ErrorKind::InvalidInput,
|
||||
};
|
||||
|
||||
io::Error::new(kind, err)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue