Module ntex_bytes::buf

source ·
Expand description

Utilities for working with buffers.

A buffer is any structure that contains a sequence of bytes. The bytes may or may not be stored in contiguous memory. This module contains traits used to abstract over buffers as well as utilities for working with buffer types.

§Buf, BufMut

These are the two foundational traits for abstractly working with buffers. They can be thought as iterators for byte structures. They offer additional performance over Iterator by providing an API optimized for byte slices.

See Buf and BufMut for more details.

Structs§

  • Iterator over the bytes contained by the buffer.
  • Uninitialized byte slice.
  • A BufMut adapter which implements io::Write for the inner value.

Traits§

  • Read bytes from a buffer.
  • A trait for values that provide sequential write access to bytes.