pub trait WrappingAdd<Rhs = Self> {
    fn wrapping_add(self, rhs: Rhs) -> Self;
}

Required Methods§

Implementors§