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