mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Fix conversion from BytesVec to BytesMut and back (BytesVec::with_bytes_mut())
This commit is contained in:
parent
1baf305b1f
commit
767dd91b7e
6 changed files with 13 additions and 6 deletions
|
@ -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..]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue