(
self: std::pin::Pin<&mut Self>,
cx: &mut Context<'_>,
)
| 637 | impl futures_core::Stream for VirtualEventStream { |
| 638 | type Item = io::Result<InputEvent>; |
| 639 | fn poll_next( |
| 640 | self: std::pin::Pin<&mut Self>, |
| 641 | cx: &mut Context<'_>, |
| 642 | ) -> Poll<Option<Self::Item>> { |
| 643 | self.get_mut().poll_event(cx).map(Some) |
| 644 | } |
| 645 | } |
| 646 | } |
| 647 | #[cfg(feature = "tokio")] |
nothing calls this directly
no test coverage detected