pub trait AssignRem<Lhs = Self, Rhs = Self> {
// Required method
fn assign_rem(&mut self, lhs: Lhs, rhs: Rhs);
}
Expand description
Remainder with assignment into a separate argument.
pub trait AssignRem<Lhs = Self, Rhs = Self> {
// Required method
fn assign_rem(&mut self, lhs: Lhs, rhs: Rhs);
}
Remainder with assignment into a separate argument.