pub trait Rechunk {
type Output;
// Required method
fn rechunk(&self, chunks: &[Range<usize>]) -> Self::Output;
}
pub trait Rechunk {
type Output;
// Required method
fn rechunk(&self, chunks: &[Range<usize>]) -> Self::Output;
}