#buffer #zero-copy #io #byte-buffer

smallbytes

SmallBytes = SmallVec + impl BufMut (from the bytes crate)

1 unstable release

0.1.0 Jun 13, 2024

#1316 in Data structures

MIT license

9KB
152 lines

Smallbytes

crates.io docs.rs

SmallBytes = SmallVec + impl BufMut (from the bytes crate)

use smallbytes::SmallBytes;
use bytes::BufMut;

// initialize a buffer with inline capacity of 6 bytes
let mut buf = SmallBytes::<6>::new();

// the first word fits inline (stack)
buf.put(&b"hello"[..]);

// the rest does not, so the contents are moved to the heap
buf.put(&b" world"[..]);
buf.put_u16(1234);

assert_eq!(buf.as_ref(), &b"hello world\x04\xD2"[..]);

The size of a SmallBytes object is at least 24 bytes (pointer, length, capacity) similar to a Vec. This means you can always store 16 bytes on the stack for free.

use std::mem::size_of;
use smallbytes::SmallBytes;

assert_eq!(24, size_of::<SmallBytes<0>>());  // zero bytes on the stack, don't do this
assert_eq!(24, size_of::<SmallBytes<8>>());  // 8 bytes on the stack
assert_eq!(24, size_of::<SmallBytes<16>>()); // 16 bytes on the stack (ideal minimum)
assert_eq!(32, size_of::<SmallBytes<24>>()); // 24 bytes on the stack (stack size increases)

Dependencies

~250KB