mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Reduce size of Option<Bytes> by using NonNull
This commit is contained in:
parent
53e9487357
commit
ace681ba74
5 changed files with 36 additions and 27 deletions
|
@ -13,6 +13,13 @@ fn inline_cap() -> usize {
|
|||
fn is_sync<T: Sync>() {}
|
||||
fn is_send<T: Send>() {}
|
||||
|
||||
#[cfg(target_pointer_width = "64")]
|
||||
#[test]
|
||||
fn test_size() {
|
||||
assert_eq!(32, std::mem::size_of::<Bytes>());
|
||||
assert_eq!(32, std::mem::size_of::<Option<Bytes>>());
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_bounds() {
|
||||
is_sync::<Bytes>();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue