(&mut self, rhs: Choice)
| 510 | impl BitOrAssign for Choice { |
| 511 | #[inline] |
| 512 | fn bitor_assign(&mut self, rhs: Choice) { |
| 513 | *self = *self | rhs; |
| 514 | } |
| 515 | } |
| 516 | |
| 517 | impl BitXor for Choice { |
nothing calls this directly
no outgoing calls
no test coverage detected