Helper type to display a comma-separated list of displayable values.
| 38 | |
| 39 | /// Helper type to display a comma-separated list of displayable values. |
| 40 | struct DisplayIter<T>(T); |
| 41 | impl<T: Iterator + Clone> fmt::Display for DisplayIter<T> |
| 42 | where |
| 43 | T::Item: fmt::Display, |
nothing calls this directly
no outgoing calls
no test coverage detected