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
"A fundamental difference between Rust's futures and those from other languages is that Rust's futures do not do anything unless polled. " [0] I think following this behavior in this crate would make it more consistent with the rest of the ecosystem.
Current behavior: The snippet below keeps printing "called" indefinitely even though we did not await it.
"A fundamental difference between Rust's futures and those from other languages is that Rust's futures do not do anything unless polled. " [0] I think following this behavior in this crate would make it more consistent with the rest of the ecosystem.
Current behavior: The snippet below keeps printing
"called"
indefinitely even though we did not await it.The text was updated successfully, but these errors were encountered: