pub trait BitAnd {
type Value: BitSetLike;
// Required method
fn and(self) -> Self::Value;
}Expand description
BitAnd is a helper method to & bitsets together resulting in a tree.
Required Associated Types§
Sourcetype Value: BitSetLike
type Value: BitSetLike
The combined bitsets.
Required Methods§
Implementations on Foreign Types§
Source§impl<A> BitAnd for (A,)where
A: BitSetLike,
This needs to be special cased
impl<A> BitAnd for (A,)where
A: BitSetLike,
This needs to be special cased