pub enum Poll<T> {
Ready(T),
Pending,
}Expand description
Indicates whether a value is available or if the current task has been scheduled to receive a wakeup instead.
This is returned by Future::poll.
pub enum Poll<T> {
Ready(T),
Pending,
}Indicates whether a value is available or if the current task has been scheduled to receive a wakeup instead.
This is returned by Future::poll.