pub trait Array2Reader {
    fn deserialize_array2<A: DeserializeOwned>(
        self,
        shape: (usize, usize)
    ) -> Result<Array2<A>, ReadError>; }
Expand description

An extension trait; this is implemented by &mut csv::Reader

Required Methods§

Read CSV data into a new ndarray with the given shape

Implementations on Foreign Types§

Implementors§