(&self)
| 145 | /// Returns whether this bitset contains any bits that do not correspond to a valid variant. |
| 146 | #[inline(always)] |
| 147 | pub fn has_unknown_bits(&self) -> bool { |
| 148 | !(self.repr & !T::ALL_BITS).is_empty() |
| 149 | } |
| 150 | |
| 151 | /// Checks whether this set contains a specific bit. |
| 152 | #[inline(always)] |
no test coverage detected