Expand description

ReadBuf types and methods. See https://github.com/rust-lang/rust/issues/78485

Structs

A wrapper around a byte buffer that is incrementally filled and initialized.

A wrapper around &mut ReadBuf which prevents the buffer that the ReadBuf points to from being replaced.

Traits

A wrapper over io::Read to provide the custom read_buf* methods on stable

Type Definitions

A ReadBuf that owns it’s buffer using a [MaybeUninit<u8>; N]

A ReadBuf that takes it’s buffer from an existing slice

A ReadBuf that owns it’s buffer using a Vec<u8>