Lines Matching refs:BufMut
13 - Rename Buf/BufMut, methods to chunk/chunk_mut (#450)
23 - `BufMut` is now an `unsafe` trait (#432).
24 - `BufMut::bytes_mut()` returns `&mut UninitSlice`, a type owned by `bytes` to
27 - `Buf`/`BufMut` utility methods are moved onto the trait and `*Ext` traits are
31 - `BufMut::bytes_vectored_mut()` (#430).
47 - Fix `BufMut::advance_mut` to panic if advanced passed the capacity (#354)..
91 - `BufMut::bytes_mut` returns `&mut [MaybeUninit<u8>]` to reflect the unknown
93 - `Buf` / `BufMut` implementations for `&[u8]` and `&mut [u8]`
95 - Move `Buf` / `BufMut` "extra" functions to an extension trait (#306).
128 * impl `Buf` and `BufMut` for `Either` (#225).
144 * Make `Buf` and `BufMut` usable as trait objects (#186).
189 * Add scatter/gather support to `Buf` and `BufMut`.