pub fn pretty_vec<T: Display>(elems: &[T]) -> String
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