1 2 3 4 5 6 7 8 9
use std::borrow::BorrowMut; use crate::Buffer; impl BorrowMut<[u8]> for Buffer { fn borrow_mut(&mut self) -> &mut [u8] { self } }