pub trait CheckedArithMul<RHS>:
Copy
+ Clone
+ Debug
+ 'static{
// Required method
fn checked_mul(self, rhs: RHS) -> Result<Self, CoordinateOverflow>;
}Required Methods§
fn checked_mul(self, rhs: RHS) -> Result<Self, CoordinateOverflow>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".