We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4e310a commit a34d793Copy full SHA for a34d793
README.md
@@ -79,7 +79,7 @@ fn my_system(mut task_pool: AsyncTaskPool<u64>) {
79
}
80
81
for status in task_pool.iter_poll() {
82
- if let AsyncTaskStatus::Finished(t) = status {
+ if let Poll::Ready(t) = status {
83
info!("Received {t}");
84
85
0 commit comments