#byte #slice #zero-copy #reference-counting #storage #cloning #minibytes

sapling-minibytes

Shared reference-counted bytes and str with zero-copy slicing support

1 unstable release

new 0.1.0 Nov 11, 2024

#10 in #cloning

Download history 121/week @ 2024-11-10

121 downloads per month
Used in 4 crates

MIT license

27KB
646 lines

minibytes

This create provides the Bytes type. It is similar to &[u8]: cloning or slicing are zero-copy. Unlike &[u8], Bytes does not have lifetime. This is done by maintaining the life cycle of the underlying storage using reference count.

Aside from supporting Vec<u8> as the underlying storage, Bytes also supports memmap2::Mmap. Libraries can implement BytesOwner for other types to further extend storage support.

Dependencies

~0.3–1MB
~23K SLoC