You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The new release of Rust introduced std::task::ready, this is a macro for a pattern we use extensively in cargo. We should search through the code for anyplace like Poll::Pending => return Poll::Pending and switch to the new macro if it will make the code clearer.
The text was updated successfully, but these errors were encountered:
The new release of Rust introduced std::task::ready, this is a macro for a pattern we use extensively in cargo. We should search through the code for anyplace like
Poll::Pending => return Poll::Pending
and switch to the new macro if it will make the code clearer.The text was updated successfully, but these errors were encountered: