trait NumOps<Rhs = Self, Output = Self> = Add<Rhs, Output = Output> + Sub<Rhs, Output = Output> + Mul<Rhs, Output = Output> + Div<Rhs, Output = Output> + Rem<Rhs, Output = Output>;
num::traits::NumOps
see