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