Unsets all bits in the flags.
(&mut self)
| 330 | |
| 331 | /// Unsets all bits in the flags. |
| 332 | fn clear(&mut self) |
| 333 | where |
| 334 | Self: Sized, |
| 335 | { |
| 336 | *self = Self::empty(); |
| 337 | } |
| 338 | |
| 339 | /// The bitwise and (`&`) of the bits in `self` and `other`. |
| 340 | #[must_use] |
no outgoing calls