Crate cl_generic_read_buf

Source
Expand description

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

Structs§

ReadBuf
A wrapper around a byte buffer that is incrementally filled and initialized.
ReadBufRef
A wrapper around &mut ReadBuf which prevents the buffer that the ReadBuf points to from being replaced.

Traits§

Bytes
A Storage of u8s
Read
A wrapper over io::Read to provide the custom read_buf* methods on stable

Type Aliases§

ReadArray
A ReadBuf that owns it’s buffer using a [MaybeUninit<u8>; N]
ReadSlice
A ReadBuf that takes it’s buffer from an existing slice
ReadVec
A ReadBuf that owns it’s buffer using a Vec<u8>