(&self, bufs: &mut [IoSlice], mut offset: u64)
| 731 | |
| 732 | #[inline] |
| 733 | fn write_all_vectored_at(&self, bufs: &mut [IoSlice], mut offset: u64) -> io::Result<()> { |
| 734 | for buf in bufs { |
| 735 | self.write_all_at(buf, offset)?; |
| 736 | offset += u64::try_from(buf.len()).unwrap(); |
| 737 | } |
| 738 | Ok(()) |
| 739 | } |
| 740 | |
| 741 | #[inline] |
| 742 | fn is_write_vectored_at(&self) -> bool { |
nothing calls this directly
no test coverage detected