[−][src]Enum ndarray_npy::ReadNpyError
An error reading a .npy
file.
Variants
Io(Error)
An error caused by I/O.
An error parsing the file header.
An error parsing the data.
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.
An error caused by incorrect Dimension
type.
WrongDescriptor(PyValue)
The type descriptor does not match the element type.
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 ReadNpyError
[src]
impl Display for ReadNpyError
[src]
impl Error for ReadNpyError
[src]
pub fn source(&self) -> Option<&(dyn Error + 'static)>
[src]
pub fn backtrace(&self) -> Option<&Backtrace>
[src]
pub fn description(&self) -> &str
1.0.0[src]
pub fn cause(&self) -> Option<&dyn Error>
1.0.0[src]
impl From<Error> for ReadNpyError
[src]
pub fn from(err: Error) -> ReadNpyError
[src]
impl From<ReadDataError> for ReadNpyError
[src]
pub fn from(err: ReadDataError) -> ReadNpyError
[src]
impl From<ReadNpyError> for ReadNpzError
[src]
pub fn from(err: ReadNpyError) -> ReadNpzError
[src]
Auto Trait Implementations
impl !RefUnwindSafe for ReadNpyError
[src]
impl Send for ReadNpyError
[src]
impl Sync for ReadNpyError
[src]
impl Unpin for ReadNpyError
[src]
impl !UnwindSafe for ReadNpyError
[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,