(
mut self: Pin<&mut Self>,
cx: &mut Context<'_>,
)
| 119 | type Item = Result<RecordBatch>; |
| 120 | |
| 121 | fn poll_next( |
| 122 | mut self: Pin<&mut Self>, |
| 123 | cx: &mut Context<'_>, |
| 124 | ) -> Poll<Option<Self::Item>> { |
| 125 | let result = self.poll_inner(cx); |
| 126 | self.baseline_metrics.record_poll(result) |
| 127 | } |
| 128 | } |
| 129 | |
| 130 | impl RecordBatchStream for FileStream { |
nothing calls this directly
no test coverage detected