uselibc::iovec;// Abstracts management of fixed buffers in a buffer registry.
pub(crate)traitFixedBuffers{// Provides access to the raw buffers as a slice of iovec.
fniovecs(&self)->&[iovec];/// Sets the indexed buffer's state to free and records the updated length
/// of its initialized part.
////// # Panics
////// The buffer addressed must be in the checked out state,
/// otherwise this function may panic.
////// # Safety
////// While the implementation of this method typically does not need to
/// do anything unsafe, the caller must ensure that the bytes in the buffer
/// are initialized up to the specified length.
unsafefncheck_in(&mutself, buf_index:u16, init_len:usize);}