#Print a Vec without printing the contents of the Vec with debug
6 messages · Page 1 of 1 (latest)
what type does the vector contain?
The debug formatting of a Vec is just its contents, comma-separated, in square parentheses, so printing a vec without printing its contents would probably mean [].
Can you be a bit more specific?
I wanted to format the contents of the vec with display instead of debug
You will have to do this by hand.