pub trait DivArray2<RHS> {
type Output;
// Required method
fn div_array2(self, rhs: Array2<RHS>) -> Result<Self::Output, String>;
}pub trait DivArray2<RHS> {
type Output;
// Required method
fn div_array2(self, rhs: Array2<RHS>) -> Result<Self::Output, String>;
}