The bitwise or (`|`) of the bits in `self` and `other`.
(&mut self, other: Self)
| 291 | |
| 292 | /// The bitwise or (`|`) of the bits in `self` and `other`. |
| 293 | fn insert(&mut self, other: Self) |
| 294 | where |
| 295 | Self: Sized, |
| 296 | { |
| 297 | *self = Self::from_bits_retain(self.bits()).union(other); |
| 298 | } |
| 299 | |
| 300 | /// The intersection of `self` with the complement of `other` (`&!`). |
| 301 | /// |
no test coverage detected