pub trait SaturatingAdd<Rhs = Self> {
type Output;
// Required method
const fn saturating_add(self, rhs: Rhs) -> Self::Output;
}
pub trait SaturatingAdd<Rhs = Self> {
type Output;
// Required method
const fn saturating_add(self, rhs: Rhs) -> Self::Output;
}