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