(
self: Pin<&mut Self>,
_cx: &mut TaskContext<'_>,
_buf: &mut ReadBuf<'_>,
)
| 118 | |
| 119 | impl virtual_fs::AsyncRead for TailCaptureFile { |
| 120 | fn poll_read( |
| 121 | self: Pin<&mut Self>, |
| 122 | _cx: &mut TaskContext<'_>, |
| 123 | _buf: &mut ReadBuf<'_>, |
| 124 | ) -> Poll<io::Result<()>> { |
| 125 | Poll::Ready(Ok(())) |
| 126 | } |
| 127 | } |
| 128 | |
| 129 | impl virtual_fs::AsyncWrite for TailCaptureFile { |
nothing calls this directly
no test coverage detected