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 return
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 return