Poll::Ready — future complete. Poll::Pending — future not ready.
Poll::Ready:
Poll::Pending:
1use std::task::Poll;23fn my_poll() -> Poll<i32> {4 Poll::Ready(42) // Done5}67fn my_pending() -> Poll<i32> {8 Poll::Pending // Not ready9}
Key: Ready for completion, Pending for waiting.