morka17 / rust_async_examples

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Poll

pub enum Poll<T> {
  Ready(T),
  Pending,
}

Async Executors

Futures in action we need a way to run them. What calls the poll method? That is the job of an executor.

About


Languages

Language:Rust 100.0%