Trait specs::join::BitAnd[][src]

pub trait BitAnd {
    type Value: BitSetLike;
    fn and(self) -> Self::Value;
}
Expand description

BitAnd is a helper method to & bitsets together resulting in a tree.

Associated Types

The combined bitsets.

Required methods

Combines Self into a single BitSetLike through BitSetAnd.

Implementations on Foreign Types

This needs to be special cased

Implementors