pub trait RefSaturatingAdd<RHS = Self> {
    type Output;

    fn ref_saturating_add(&self, rhs: RHS) -> Self::Output;
}
Expand description

Types that supports saturating addition.

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors