Trait num_traits::NumAssignOps [] [src]

pub trait NumAssignOps<Rhs = Self>: AddAssign<Rhs> + SubAssign<Rhs> + MulAssign<Rhs> + DivAssign<Rhs> + RemAssign<Rhs> { }

The trait for types implementing numeric assignment operators (like +=).

This is automatically implemented for types which implement the operators.

Implementors