num_traits

Trait NumAssignRef

Source
pub trait NumAssignRef: NumAssign + for<'r> NumAssignOps<&'r Self> { }
Expand description

The trait for NumAssign types which also implement assignment operations taking the second operand by reference.

This is automatically implemented for types which implement the operators.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T> NumAssignRef for T
where T: NumAssign + for<'r> NumAssignOps<&'r T>,