Fix conversion from BytesVec to BytesMut and back (BytesVec::with_bytes_mut())

This commit is contained in:
Nikolay Kim 2022-01-31 15:17:16 +06:00
parent 1baf305b1f
commit 767dd91b7e
6 changed files with 13 additions and 6 deletions

View file

@ -824,6 +824,7 @@ fn bytes_vec_freeze() {
fn bytes_vec() {
let mut bytes = BytesVec::copy_from_slice(LONG);
bytes.with_bytes_mut(|buf| {
assert_eq!(buf, LONG);
assert_eq!(buf.split_to(4), &LONG[..4]);
});
assert_eq!(bytes, &LONG[4..]);