pub trait NumpyArray: Sized {
    type Elem: NumpyArrayElement;
    type Iter: Iterator<Item = Self::Elem>;

    fn npy_shape(&self) -> Vec<usize>;
    fn npy_elements(self) -> Self::Iter;
}

Required Associated Types§

Required Methods§

Implementations on Foreign Types§

Implementors§