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§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".