Trait compio_buf::IoVectoredBuf
source · pub unsafe trait IoVectoredBuf: Unpin + 'static {
type Item: IoBuf;
type Iter<'a>: Iterator<Item = &'a Self::Item>;
// Required method
fn buf_iter(&self) -> Self::Iter<'_>;
}
Required Associated Types§
sourcetype Iter<'a>: Iterator<Item = &'a Self::Item>
type Iter<'a>: Iterator<Item = &'a Self::Item>
The iterator type returned by IoVectoredBuf::buf_iter
.
Required Methods§
Object Safety§
This trait is not object safe.