Enum ndarray_npy::WriteNpzError
[−]
pub enum WriteNpzError { Io(Error), Zip(ZipError), Npy(WriteNpyError), }
An error writing a .npz
file.
Variants
Io(Error)
An error caused by I/O.
Zip(ZipError)
An error caused by the zip file.
Npy(WriteNpyError)
An error caused by writing an inner .npy
file.
Trait Implementations
impl Debug for WriteNpzError
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl Display for WriteNpzError
impl Error for WriteNpzError
fn description(&self) -> &str
A short description of the error. Read more
fn cause(&self) -> Option<&Error>
The lower-level cause of this error, if any. Read more
impl From<Error> for WriteNpzError
fn from(err: Error) -> WriteNpzError
Performs the conversion.
impl From<ZipError> for WriteNpzError
fn from(err: ZipError) -> WriteNpzError
Performs the conversion.
impl From<WriteNpyError> for WriteNpzError
fn from(err: WriteNpyError) -> WriteNpzError
Performs the conversion.