Reduce size of Option<Bytes> by using NonNull

This commit is contained in:
Nikolay Kim 2021-06-27 18:31:48 +06:00
parent 53e9487357
commit ace681ba74
5 changed files with 36 additions and 27 deletions

View file

@ -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>();