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