pub trait BitUnion<Rhs = Self> {
type Output;
// Required method
fn union(self, rhs: Rhs) -> Self::Output;
}Expand description
Union of bit-sets.
pub trait BitUnion<Rhs = Self> {
type Output;
// Required method
fn union(self, rhs: Rhs) -> Self::Output;
}Union of bit-sets.