await
code:_.rs
// これが
task.await;
// これとだいたい同じ
match task.poll(cx) {
Poll::Pending => return Poll::Pending,
Poll::Result(x) => x,
}