Lines Matching refs:IoSliceMut
6 use std::io::{IoSlice, IoSliceMut};
31 pub fn readv(fd: RawFd, iov: &mut [IoSliceMut<'_>]) -> Result<usize> {
32 // SAFETY: same as in writev(), IoSliceMut is ABI-compatible with iovec
76 iov: &mut [IoSliceMut<'_>],
155 note = "`IoVec` is no longer used in the public interface, use `IoSlice` or `IoSliceMut` instead"
170 note = "Use the `Deref` impl of `IoSlice` or `IoSliceMut` instead"
200 #[deprecated(since = "0.24.0", note = "Use `IoSliceMut::new` instead")]
260 /// `local_iov` is a list of [`IoSliceMut`]s containing the buffer to copy
275 /// [`IoSliceMut`]: https://doc.rust-lang.org/std/io/struct.IoSliceMut.html
280 local_iov: &mut [IoSliceMut<'_>],