| 7 | /// the string. |
| 8 | pub fn display_utf8_lossy(input: &[u8]) -> impl fmt::Display + '_ { |
| 9 | struct StringDisplay<'a>(&'a [u8]); |
| 10 | |
| 11 | impl fmt::Display for StringDisplay<'_> { |
| 12 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
no outgoing calls
no test coverage detected