If I wanted to eliminate the zero initialization, I could do that usingreserve+set_lenon the vec. However, rust forbids wrapping uninitialized values in a slice - you have to use raw pointers when initializing uninitialized memory. But the current signature ofUint8Array::viewrequires me to make...