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§

source

fn union(&mut self, other: &Rhs) -> bool

source

fn subtract(&mut self, other: &Rhs) -> bool

source

fn intersect(&mut self, other: &Rhs) -> bool

Implementors§