(&self, fmt: &mut Formatter<'_>)
| 435 | |
| 436 | impl Display for SymbolDisplay<'_> { |
| 437 | fn fmt(&self, fmt: &mut Formatter<'_>) -> fmt::Result { |
| 438 | for symbol in self.inner { |
| 439 | fmt.write_str(symbol.to_str(self.charset))?; |
| 440 | } |
| 441 | |
| 442 | Ok(()) |
| 443 | } |
| 444 | } |
| 445 | |
| 446 | #[derive(Debug, Copy, Clone)] |
nothing calls this directly
no test coverage detected