pub trait IntoNdarr<T, R: Unsigned>where T: Debug + Clone + Default,{ // Required methods fn into_ndarr(&self, shape: &Dim<R>) -> Ndarr<T, R>; fn get_rank(&self) -> usize; }