Wisha W.
Wisha W.
@yoshuawuyts @matheus-consoli is there still interest in this change? I think reducing the number of allocations from N to 1 is very beneficial.
See [this playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=b19005dc844a8cadf0fb682dc1c111b7). You might think that the 5 seconds wait started when `signal_future` was created - in the line ```rust let signal_future = wait_for_signal(); ``` **But async code are...
Something like that could work. Being based on async Rust, Async UI can be incorporated into existing async programs pretty easily. You could do something like make a box appear...
Thanks so much for the review! > ## `incorrect_not_in_scope` test case This is indeed unexpected. I wasn't even aware async behaves this way. I'll document this issue. Since this library...
From the IRLO thread RalfJung mentioned that criteria like `Vec::set_len` can be loosened further. So indeed this crate is assuming more than what Pin provide and is thus unsound. I...
Hi! Yes documentation pull requests would be really welcomed. I've been pretty busy with university :( @anborg The library is still pretty bare-bone. No tables yet. For authentication, the hackernews...
When merging N streams, we can either - poll each of them every time, or - poll only the ones that have are ready to be polled. We go with...