pub trait DimMul<D>: Dimwhere D: Dim,{ type Output: Dim; // Required method fn mul(self, other: D) -> Self::Output; }