pub type ResponseBuffer = OwnOrBorrowMut<'static, [u8]>;
enum ResponseBuffer { Own(Box<[u8]>), Borrow(&'static mut [u8]), }