We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
uv-extract
1 parent 06af93f commit e8bc395Copy full SHA for e8bc395
crates/uv-extract/src/error.rs
@@ -2,11 +2,11 @@ use std::{ffi::OsString, path::PathBuf};
2
3
#[derive(Debug, thiserror::Error)]
4
pub enum Error {
5
- #[error(transparent)]
+ #[error("Failed to read from zip file")]
6
Zip(#[from] zip::result::ZipError),
7
8
AsyncZip(#[from] async_zip::error::ZipError),
9
+ #[error("I/O operation failed during extraction")]
10
Io(#[from] std::io::Error),
11
#[error(
12
"The top-level of the archive must only contain a list directory, but it contains: {0:?}"
0 commit comments