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