pub trait ArraySource<T>: Send + Sync {
// Required methods
fn shape(&self) -> &[usize];
fn read_region(
&self,
start: &[usize],
shape: &[usize],
) -> Result<Array<T, IxDyn>>;
}Expand description
Source for virtual array components