Skip to main content

BitAndNotAssign

Trait BitAndNotAssign 

Source
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§

Source

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".

Implementors§