Helper type to display a comma-separated list of displayable values.
| 12 | |
| 13 | /// Helper type to display a comma-separated list of displayable values. |
| 14 | pub(crate) struct DisplayIter<T> { |
| 15 | iter: Cell<Option<T>>, |
| 16 | separator: &'static str, |
| 17 | } |
| 18 | impl<T: IntoIterator> fmt::Display for DisplayIter<T> |
| 19 | where |
| 20 | T::Item: fmt::Display, |
nothing calls this directly
no outgoing calls
no test coverage detected