Runtime-agnostic async crates by Zeeshan Ali - Rust Linz, Feburary 2022

preview_player
Показать описание

Special Thanks to Microsoft for their support
Рекомендации по теме
Комментарии
Автор

All async runtimes should adhere to a standard set of higher level traits so that all you have to do is just implement those and trust that the runtimes implement them in a safe and reliable way

NikolajLepka
Автор

"How do you do runtime-agnostic async Rust?"
- "That's the neat part: You don't"

sjorsborsoborsobors
Автор

It seems that any language but Rust does not have such a problem because the standard library includes the async runtime (no one calls it "async runtime" in Java or C#, or, probably, in other languages, but nonetheless, there is a standard implementation). What is the fundamental reason the same was not / cannot be done in Rust?

stIncMale