Function std::future::poll_fn [−][src]
Expand description
Creates a future that wraps a function returning Poll
.
Polling the future delegates to the wrapped function.
Examples
#![feature(future_poll_fn)]
use core::future::poll_fn;
use std::task::{Context, Poll};
fn read_line(_cx: &mut Context<'_>) -> Poll<String> {
Poll::Ready("Hello, World!".into())
}
let read_future = poll_fn(read_line);
assert_eq!(read_future.await, "Hello, World!".to_owned());
Run