macro_rules! impl_sub_assign {
($type:ty $(, ($type_param:ty, $param_name:ty))?) => { ... };
}Expand description
Given a struct which implements Sub implement SubAssign<T> for
any type T which implements Into<Self>.
SubAssign is implemented in a simple way by calling sub
and assigning the result to *self.