Enum zip::result::ZipError [] [src]

pub enum ZipError {
    Io(Error),
    InvalidArchive(&'static str),
    UnsupportedArchive(&'static str),
    FileNotFound,
}

Error type for Zip

Variants

An Error caused by I/O

This file is probably not a zip archive

This archive is not supported

The requested file could not be found in the archive

Trait Implementations

impl Debug for ZipError
[src]

Formats the value using the given formatter.

impl From<Error> for ZipError
[src]

Performs the conversion.

impl Display for ZipError
[src]

Formats the value using the given formatter. Read more

impl Error for ZipError
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more