Enum ndarray_npy::ViewDataError[][src]

#[non_exhaustive]pub enum ViewDataError {
    WrongDescriptor(PyValue),
    NonNativeEndian,
    Misaligned,
    MissingBytes(usize),
    ExtraBytes(usize),
    InvalidData(Box<dyn Error + Send + Sync + 'static>),
}

An error viewing array data.

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.
WrongDescriptor(PyValue)

The type descriptor does not match the element type.

NonNativeEndian

The type descriptor does not match the native endianness.

Misaligned

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.

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

Some of the data is invalid for the element type.

Trait Implementations

impl Debug for ViewDataError[src]

impl Display for ViewDataError[src]

impl Error for ViewDataError[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.