pub trait AddSaturating<Rhs = Self>where
    Rhs: ?Sized,{
    type Output;

    // Required method
    fn add_saturating(&self, rhs: &Rhs) -> Self::Output;
}
Expand description

Binary operator for adding two values, bounding the sum to MAX if an overflow occurs.

Required Associated Types§

type Output

Required Methods§

fn add_saturating(&self, rhs: &Rhs) -> Self::Output

Implementors§