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

ntex-bytes

Types and traits for working with bytes (bytes crate fork)

28 releases

0.1.27 Apr 8, 2024
0.1.24 Feb 1, 2024
0.1.21 Nov 10, 2023
0.1.19 Jan 23, 2023
0.1.4 Jun 27, 2021

#895 in Network programming

Download history 1325/week @ 2024-01-03 1060/week @ 2024-01-10 1112/week @ 2024-01-17 910/week @ 2024-01-24 889/week @ 2024-01-31 1066/week @ 2024-02-07 1141/week @ 2024-02-14 1127/week @ 2024-02-21 1381/week @ 2024-02-28 1730/week @ 2024-03-06 1472/week @ 2024-03-13 1675/week @ 2024-03-20 1483/week @ 2024-03-27 2064/week @ 2024-04-03 1888/week @ 2024-04-10 1343/week @ 2024-04-17

7,072 downloads per month
Used in 56 crates (16 directly)

MIT/Apache

240KB
4.5K SLoC

Bytes

A utility library for working with bytes. This is fork of bytes crate (https://github.com/tokio-rs/bytes)

Crates.io

Documentation

Usage

To use ntex-bytes, first add this to your Cargo.toml:

[dependencies]
ntex-bytes = "0.1"

Next, add this to your crate:

use ntex_bytes::{Bytes, BytesMut, Buf, BufMut};

Serde support

Serde support is optional and disabled by default. To enable use the feature serde.

[dependencies]
ntex-bytes = { version = "0.1", features = ["serde"] }

License


lib.rs:

Provides abstractions for working with bytes.

This is fork of bytes crate

The ntex-bytes crate provides an efficient byte buffer structure (Bytes) and traits for working with buffer implementations (Buf, BufMut).

Bytes

Bytes is an efficient container for storing and operating on contiguous slices of memory. It is intended for use primarily in networking code, but could have applications elsewhere as well.

Bytes values facilitate zero-copy network programming by allowing multiple Bytes objects to point to the same underlying memory. This is managed by using a reference count to track when the memory is no longer needed and can be freed.

A Bytes handle can be created directly from an existing byte store (such as &[u8] or Vec<u8>), but usually a BytesMut is used first and written to. For example:

use ntex_bytes::{BytesMut, BufMut};

let mut buf = BytesMut::with_capacity(1024);
buf.put(&b"hello world"[..]);
buf.put_u16(1234);

let a = buf.split();
assert_eq!(a, b"hello world\x04\xD2"[..]);

buf.put(&b"goodbye world"[..]);

let b = buf.split();
assert_eq!(b, b"goodbye world"[..]);

assert_eq!(buf.capacity(), 998);

In the above example, only a single buffer of 1024 is allocated. The handles a and b will share the underlying buffer and maintain indices tracking the view into the buffer represented by the handle.

See the struct docs for more details.

Dependencies

~360–690KB
~14K SLoC