pub trait BitRelations<Rhs> {
// Required methods
fn union(&mut self, other: &Rhs) -> bool;
fn subtract(&mut self, other: &Rhs) -> bool;
fn intersect(&mut self, other: &Rhs) -> bool;
}Required Methods§
fn union(&mut self, other: &Rhs) -> bool
fn subtract(&mut self, other: &Rhs) -> bool
fn intersect(&mut self, other: &Rhs) -> bool
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".