| 51 | impl fmt::Debug for StringPool { |
| 52 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 53 | struct Strings<'a>(&'a StringPool); |
| 54 | impl fmt::Debug for Strings<'_> { |
| 55 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 56 | f.debug_map() |
no outgoing calls
no test coverage detected