pull down to refresh
0 sats \ 1 reply \ @orthzar 25 Mar \ parent \ on: Why choose async/await over threads? tech
Rust implements async/await as a finite state machine, something which was/is very common in assembly programming, because it is arguably the simplest means to handle this sort of task. Rust is doing a very poor job of departing from assembly.