Trait num_traits::NumAssign

source ·
pub trait NumAssign: Num + NumAssignOps { }
Expand description

The trait for Num types which also implement assignment operators.

This is automatically implemented for types which implement the operators.

Implementors§

source§

impl<T> NumAssign for Twhere T: Num + NumAssignOps,