I gather that Rust provides Debug impl's for arrays size 32 and smaller.
I also gather that I could implement Debug on a larger array by simply using write!
with a very long format specifier. But I'm wondering if there's a better way.
What is the recommended method for implementing Debug for an array of length, say, 1024?