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