Lines Matching refs:BytesMut
36 - Improve `BytesMut` to reuse buffer when fully `advance`d.
37 - Mark `BytesMut::{as_mut, set_len}` with `#[inline]`.
48 - Fix `BytesMut::freeze` ignoring amount previously `advance`d (#352).
54 - Add `From<BytesMut>` for `Bytes`.
79 - Growth documentation for `BytesMut` (#321)
89 - `BytesMut` implicitly grows internal storage. `remaining_mut()` returns
104 - `BorrowMut` implementation for `BytesMut` (#185).
117 - Implement `FromIterator<&'a u8>` for `BytesMut`/`Bytes` (#244).
138 * Fix panic in `BytesMut` `FromIterator` implementation.
145 * impl BorrowMut for BytesMut (#185).
150 * Implement FromIterator for Bytes/BytesMut (#148).
151 * Add `advance` fn to Bytes/BytesMut (#166).
152 * Add `unsplit` fn to `BytesMut` (#162, #173).
161 * Implement `AsMut[u8]` for `BytesMut`
166 * Add `extend_from_slice` on `Bytes` and `BytesMut`
191 * Reduce allocations on repeated calls to `BytesMut::reserve`.
194 * Implement `Extend` for `BytesMut`.