(&self, f: &mut core::fmt::Formatter<'_>)
| 54 | |
| 55 | impl core::fmt::Debug for CompoundBitSet { |
| 56 | fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { |
| 57 | write!(f, "CompoundBitSet ")?; |
| 58 | f.debug_set().entries(self.iter()).finish() |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | impl CompoundBitSet { |