Expand description
Re-exports§
Macros§
- buf_try
- A helper macro to imitate the behavior of try trait
?
.
Structs§
- BufResult
- A specialized
Result
type for operations with buffers. - IoBuffer
- An unsafe,
'static
, partially initialized, and mutable buffer. - IoSlice
- An unsafe,
'static
, initialized, and immutable slice of bytes to interact with system API. - IoSlice
Mut - An unsafe,
'static
, maybe uninitialized, and mutable slice of bytes to interact with system API. - Slice
- An owned view into a contiguous sequence of bytes.
- Uninit
- A
Slice
that only exposes uninitialized bytes. - Vectored
BufIter - An owned iterator over a vectored buffer.
- Vectored
Slice - An owned view of a vectored buffer.
- Vectored
Slice Mut - An owned view of a vectored buffer.
Traits§
- Into
Inner - Trait to get the inner buffer of an operation or a result.
- IoBuf
- A trait for buffers.
- IoBuf
Mut - A mutable compio compatible buffer.
- IoVectored
Buf - A trait for vectored buffers.
- IoVectored
BufMut - A trait for mutable vectored buffers.
- SetBuf
Init - A helper trait for
set_len
like methods.