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]
impl Debug for WriteNpzError
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Display for WriteNpzError
impl Display for WriteNpzError
impl Error for WriteNpzError
impl Error for WriteNpzError
fn description(&self) -> &str
fn description(&self) -> &str
This method is soft-deprecated. Read more
fn cause(&self) -> Option<&Error>
fn cause(&self) -> Option<&Error>
The lower-level cause of this error, if any. Read more
impl From<Error> for WriteNpzError
impl From<Error> for WriteNpzError
fn from(err: Error) -> WriteNpzError
fn from(err: Error) -> WriteNpzError
Performs the conversion.
impl From<ZipError> for WriteNpzError
impl From<ZipError> for WriteNpzError
fn from(err: ZipError) -> WriteNpzError
fn from(err: ZipError) -> WriteNpzError
Performs the conversion.
impl From<WriteNpyError> for WriteNpzError
impl From<WriteNpyError> for WriteNpzError
fn from(err: WriteNpyError) -> WriteNpzError
fn from(err: WriteNpyError) -> WriteNpzError
Performs the conversion.
Auto Trait Implementations
impl Send for WriteNpzError
impl Send for WriteNpzError
impl Sync for WriteNpzError
impl Sync for WriteNpzError