|
|
|
|
|
by MuffinFlavored
2544 days ago
|
|
I'm not sure what this is worth, but I'd personally feel better and take Rust more seriously if they had an implementation as good as Tokio's available as part of the standard library instead of it being split across a bunch of third party libraries. Are there talks to make that a reality in the next 18 months? Is `async / .await` going to be just syntactic sugar around `Future` or is it going to necessitate an executor lives in the standard library? |
|
async / .await are going to turn functions into Futures, and they by themselves don't necessitate an executor any more than the Future trait itself.