[][src]Struct ndarray_npy::NpzReader

pub struct NpzReader<R: Read + Seek> { /* fields omitted */ }

Reader for .npz files.

Example

use ndarray::{Array1, Array2};
use ndarray_npy::NpzReader;
use std::fs::File;

let mut npz = NpzReader::new(File::open("arrays.npz")?)?;
let a: Array2<i32> = npz.by_name("a")?;
let b: Array1<i32> = npz.by_name("b")?;

Methods

impl<R: Read + Seek> NpzReader<R>[src]

pub fn new(reader: R) -> Result<NpzReader<R>, ReadNpzError>[src]

Creates a new .npz file reader.

pub fn is_empty(&self) -> bool[src]

Returns true iff the .npz file doesn't contain any arrays.

pub fn len(&self) -> usize[src]

Returns the number of arrays in the .npz file.

pub fn names(&mut self) -> Result<Vec<String>, ReadNpzError>[src]

Returns the names of all of the arrays in the file.

pub fn by_name<S, D>(
    &mut self,
    name: &str
) -> Result<ArrayBase<S, D>, ReadNpzError> where
    S::Elem: ReadableElement,
    S: DataOwned,
    D: Dimension
[src]

Reads an array by name.

pub fn by_index<S, D>(
    &mut self,
    index: usize
) -> Result<ArrayBase<S, D>, ReadNpzError> where
    S::Elem: ReadableElement,
    S: DataOwned,
    D: Dimension
[src]

Reads an array by index in the .npz file.

Auto Trait Implementations

impl<R> Send for NpzReader<R> where
    R: Send

impl<R> Sync for NpzReader<R> where
    R: Sync

impl<R> Unpin for NpzReader<R> where
    R: Unpin

impl<R> UnwindSafe for NpzReader<R> where
    R: UnwindSafe

impl<R> RefUnwindSafe for NpzReader<R> where
    R: RefUnwindSafe

Blanket Implementations

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

impl<T> From<T> for T[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.

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

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

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