Remove any unknown bits from the flags.
(&mut self)
| 283 | |
| 284 | /// Remove any unknown bits from the flags. |
| 285 | fn truncate(&mut self) |
| 286 | where |
| 287 | Self: Sized, |
| 288 | { |
| 289 | *self = Self::from_bits_truncate(self.bits()); |
| 290 | } |
| 291 | |
| 292 | /// The bitwise or (`|`) of the bits in `self` and `other`. |
| 293 | fn insert(&mut self, other: Self) |