Enum ndarray_npy::WriteNpyError []

pub enum WriteNpyError {
    Io(Error),
    FormatHeader(FormatHeaderError),
    WritableElement(Box<Error + Send + Sync>),
}

An error writing a .npy file.

Variants

An error caused by I/O.

An error issued by the element type when writing the data.

Trait Implementations

impl Debug for WriteNpyError
[src]

[src]

Formats the value using the given formatter. Read more

impl Display for WriteNpyError

Formats the value using the given formatter. Read more

impl Error for WriteNpyError

A short description of the error. Read more

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

impl From<Error> for WriteNpyError

Performs the conversion.

impl From<WriteNpyError> for WriteNpzError

Performs the conversion.

Auto Trait Implementations

impl Send for WriteNpyError

impl Sync for WriteNpyError