How to write async functions in Rust
Understanding the terminologies involved.
future: A rust trait that can be implemented by functions. The functionality it adds is that when a function which implements this trait is blocked, it will yield control of the OS thread it is running on.
If...
usethesource.hashnode.dev3 min read