pub trait CheckedAdd: Add + Sized {
    fn checked_add(self, rhs: Self) -> Option<Self>;
}

Required Methods

Implementations on Foreign Types

Implementors