pub type PollFn<'a, T> = Box<dyn FnMut() -> Pin<Box<dyn Future<Output = Result<PollStatus<T>, String>> + Send>> + Send + 'a>;Expand description
Async poll function type for device code flow.
Aliased Typeยง
pub struct PollFn<'a, T>(/* private fields */);