pub trait BitAndNotAssign<Rhs = Self> {
// Required method
fn bitandnot_assign(&mut self, rhs: Rhs);
}Expand description
Trait for the bitwise AND NOT assignment operation: self &= !rhs
Required Methods§
Sourcefn bitandnot_assign(&mut self, rhs: Rhs)
fn bitandnot_assign(&mut self, rhs: Rhs)
Assigns self & !rhs into self.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".