Enum ndarray_npy::WriteNpzError[]

pub enum WriteNpzError {
    Io(Error),
    Zip(ZipError),
    Npy(WriteNpyError),
}

An error writing a .npz file.

Variants

An error caused by I/O.

An error caused by the zip file.

An error caused by writing an inner .npy file.

Trait Implementations

impl Debug for WriteNpzError
[src]

Formats the value using the given formatter. Read more

impl Display for WriteNpzError

Formats the value using the given formatter. Read more

impl Error for WriteNpzError

This method is soft-deprecated. Read more

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

impl From<Error> for WriteNpzError

Performs the conversion.

impl From<ZipError> for WriteNpzError

Performs the conversion.

impl From<WriteNpyError> for WriteNpzError

Performs the conversion.

Auto Trait Implementations