Enum ndarray_npy::ViewNpyError[][src]

#[non_exhaustive]pub enum ViewNpyError {
    Io(Error),
    ParseHeader(ParseHeaderError),
    InvalidData(Box<dyn Error + Send + Sync + 'static>),
    LengthOverflow,
    WrongNdim(Option<usize>, usize),
    WrongDescriptor(PyValue),
    NonNativeEndian,
    MisalignedData,
    MissingBytes(usize),
    ExtraBytes(usize),
}

An error viewing a .npy file.

Variants (Non-exhaustive)

Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Io(Error)

An error caused by I/O.

ParseHeader(ParseHeaderError)

An error parsing the file header.

InvalidData(Box<dyn Error + Send + Sync + 'static>)

Some of the data is invalid for the element type.

LengthOverflow

Overflow while computing the length of the array (in units of bytes or the number of elements) from the shape described in the file header.

WrongNdim(Option<usize>, usize)

An error caused by incorrect Dimension type.

WrongDescriptor(PyValue)

The type descriptor does not match the element type.

NonNativeEndian

The type descriptor does not match the native endianness.

MisalignedData

The start of the data is not properly aligned for the element type.

MissingBytes(usize)

The file does not contain all the data described in the header.

ExtraBytes(usize)

Extra bytes are present between the end of the data and the end of the file.

Trait Implementations

impl Debug for ViewNpyError[src]

impl Display for ViewNpyError[src]

impl Error for ViewNpyError[src]

impl From<ViewDataError> for ViewNpyError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.