pub trait Scatter2D<T: ScalarOperand + Zero + Copy> { // Required method fn scatter( &self, indices_rows: &[usize], indices_cols: &[usize], dst: &mut Array2<T>, ); }