pub trait Matmul<Rhs = Self> { type Output; // Required method fn matmul(&self, rhs: Rhs) -> Self::Output; }