pub trait DivArray1<RHS> {
type Output;
// Required method
fn div_array1(self, rhs: Array1<RHS>) -> Self::Output;
}pub trait DivArray1<RHS> {
type Output;
// Required method
fn div_array1(self, rhs: Array1<RHS>) -> Self::Output;
}