pub trait ListDebug {
// Required method
fn list_debug(&self, separator: &str) -> String;
}Expand description
Extension trait to convert a list of debug-printable items into a single string.
For example, vec![Some(1), None, Some(3)].list_debug(", ") will produce
the string Some(1), None, Some(3)