Get the unknown bits from a flags value.
(&self)
| 171 | |
| 172 | /// Get the unknown bits from a flags value. |
| 173 | fn unknown_bits(&self) -> Self::Bits { |
| 174 | self.bits() & !Self::all().bits() |
| 175 | } |
| 176 | |
| 177 | /// This method will return `true` if any unknown bits are set. |
| 178 | fn contains_unknown_bits(&self) -> bool { |
no test coverage detected