pub trait CheckedArithMul<RHS: Copy + Clone + Debug + 'static>: Copy + Clone + Debug + 'static {
    fn checked_mul(self, rhs: RHS) -> Result<Self, CoordinateOverflow>;
}

Required Methods

Implementations on Foreign Types

Implementors