mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
proper use of NonNull
This commit is contained in:
parent
ace681ba74
commit
709cd3216b
5 changed files with 76 additions and 65 deletions
|
@ -18,6 +18,21 @@ fn is_send<T: Send>() {}
|
|||
fn test_size() {
|
||||
assert_eq!(32, std::mem::size_of::<Bytes>());
|
||||
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"[..],
|
||||
);
|
||||
|
||||
let val = t.freeze();
|
||||
assert!(val.is_inline());
|
||||
|
||||
let val = Some(val);
|
||||
assert!(val.is_some());
|
||||
assert_eq!(
|
||||
val.as_ref().unwrap(),
|
||||
&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"[..]
|
||||
)
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue