Enum zip::result::ZipError
[−]
[src]
pub enum ZipError {
Io(Error),
InvalidArchive(&'static str),
UnsupportedArchive(&'static str),
FileNotFound,
}Error type for Zip
Variants
Io(Error)An Error caused by I/O
InvalidArchive(&'static str)This file is probably not a zip archive
UnsupportedArchive(&'static str)This archive is not supported
FileNotFoundThe requested file could not be found in the archive
Trait Implementations
impl Debug for ZipError[src]
impl From<Error> for ZipError[src]
impl Display for ZipError[src]
fn fmt(&self, fmt: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter. Read more