Function display_list

Source
pub fn display_list<T>(
    ts: impl IntoIterator<Item = T>,
    f: &mut Formatter<'_>,
) -> Result
where T: Display,
Expand description

Write a comma separated list of of some types. Like debug_list, but using the Display instance rather than Debug, and not adding surrounding square brackets.