pub trait RefSaturatingAdd<RHS = Self> {
type Output;
// Required method
fn ref_saturating_add(&self, rhs: RHS) -> Self::Output;
}
Expand description
Types that supports saturating addition.
pub trait RefSaturatingAdd<RHS = Self> {
type Output;
// Required method
fn ref_saturating_add(&self, rhs: RHS) -> Self::Output;
}
Types that supports saturating addition.