pub trait CheckedMul<Rhs = Self> { type Output; // Required method const fn checked_mul(self, rhs: Rhs) -> Option<Self::Output>; }
✅ Checked multiplication. Returns None if the result overflows.
None
This function never panics.