pub fn pretty_vec<T>(elems: &[T]) -> Stringwhere T: Display,
Pretty prints a Vec<T> in a vector like syntax.
Vec<T>
For some input values A,B,C:
[A,B,C]
Each element is printed using its underlying Display implementation.
Display