pub trait SaturatingAdd<Rhs = Self> {
type Output;
// Required method
fn saturating_add(self, rhs: Rhs) -> Self::Output;
}Expand description
Addition operator which returns the closest possible value in the event of an overflow or underflow.