(
self: std::pin::Pin<&mut Self>,
cx: &mut Context<'_>,
)
| 876 | impl futures_core::Stream for EventStream { |
| 877 | type Item = io::Result<InputEvent>; |
| 878 | fn poll_next( |
| 879 | self: std::pin::Pin<&mut Self>, |
| 880 | cx: &mut Context<'_>, |
| 881 | ) -> Poll<Option<Self::Item>> { |
| 882 | self.get_mut().poll_event(cx).map(Some) |
| 883 | } |
| 884 | } |
| 885 | } |
| 886 | #[cfg(feature = "tokio")] |
nothing calls this directly
no test coverage detected