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