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