This commit is contained in:
Nikolay Kim 2021-12-24 03:54:57 +06:00
parent f0f899a36e
commit 15025b89c1
14 changed files with 34 additions and 82 deletions

View file

@ -26,9 +26,7 @@ fn test_size() {
assert_eq!(32, std::mem::size_of::<Option<Bytes>>());
let mut t = BytesMut::new();
t.extend_from_slice(
&b"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"[..],
);
t.extend_from_slice(&b"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"[..]);
let val = t.freeze();
assert!(val.is_inline());