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

Required Methods

Implementations on Foreign Types

Implementors