Currently, the method signature is ``` pub fn bulk_out(&self, endpoint: u8, buf: Vec<u8>) ``` But it makes a requirement to allocate the buf, which isn't always welcome. I suggest also to support specifying `buf` as `&[u8]` slice.
Currently, the method signature is
But it makes a requirement to allocate the buf, which isn't always welcome. I suggest also to support specifying
bufas&[u8]slice.