pub trait DimNameDiv<D: DimName>: DimName {
    type Output: DimName;

    fn div(self, other: D) -> Self::Output;
}

Required Associated Types

Required Methods

Implementors