Whether all bits in this flags value are unset.
(&self)
| 255 | |
| 256 | /// Whether all bits in this flags value are unset. |
| 257 | fn is_empty(&self) -> bool { |
| 258 | self.bits() == Self::Bits::EMPTY |
| 259 | } |
| 260 | |
| 261 | /// Whether all known bits in this flags value are set. |
| 262 | fn is_all(&self) -> bool { |
no test coverage detected