2

poll_fn

 1 year ago
source link: https://doc.rust-lang.org/stable/std/future/fn.poll_fn.html
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client
pub fn poll_fn<T, F>(f: F) -> PollFn<F>ⓘ where
    F: FnMut(&mut Context<'_>) -> Poll<T>, 

Creates a future that wraps a function returning Poll.

Polling the future delegates to the wrapped function.

Examples

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

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK