This method will return `true` if any unknown bits are set.
(&self)
| 176 | |
| 177 | /// This method will return `true` if any unknown bits are set. |
| 178 | fn contains_unknown_bits(&self) -> bool { |
| 179 | self.unknown_bits() != Self::Bits::EMPTY |
| 180 | } |
| 181 | |
| 182 | /// Get the underlying bits value. |
| 183 | /// |
nothing calls this directly
no test coverage detected