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