use super::Matrix; use std::ops::Add; impl Add for Matrix { type Output = Matrix; fn add(self, other: Matrix) -> Matrix { } }