Get the known bits from a flags value.
(&self)
| 166 | |
| 167 | /// Get the known bits from a flags value. |
| 168 | fn known_bits(&self) -> Self::Bits { |
| 169 | self.bits() & Self::all().bits() |
| 170 | } |
| 171 | |
| 172 | /// Get the unknown bits from a flags value. |
| 173 | fn unknown_bits(&self) -> Self::Bits { |