pub trait ProcessPollAsync {
    // Required method
    fn process_poll(&self, cx: &mut Context<'_>) -> Poll<Option<()>>;
}
Expand description

Trait that provides the [process_poll()] method.

Required Methods§

source

fn process_poll(&self, cx: &mut Context<'_>) -> Poll<Option<()>>

Processes all tasks that need to be handled for this instance, including those from the platform implementation.

Implementors§