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