Enum ndarray_npy::ReadNpzError []

pub enum ReadNpzError {
    Io(Error),
    Zip(ZipError),
    Npy(ReadNpyError),
}

An error reading a .npz file.

Variants

An error caused by I/O.

An error caused by the zip archive.

An error caused by reading an inner .npy file.

Trait Implementations

impl Debug for ReadNpzError
[src]

[src]

Formats the value using the given formatter. Read more

impl Display for ReadNpzError

Formats the value using the given formatter. Read more

impl Error for ReadNpzError

A short description of the error. Read more

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

impl From<Error> for ReadNpzError

Performs the conversion.

impl From<ZipError> for ReadNpzError

Performs the conversion.

impl From<ReadNpyError> for ReadNpzError

Performs the conversion.

Auto Trait Implementations

impl Send for ReadNpzError

impl Sync for ReadNpzError