there is a chapter on async in comprehensive rust and rustbook which ought to bring you up to speed

there is the async book but it is largely unfinished

you can watch John Gjengset's crust of rust async, decrusting tokio, and why what, and how of pinning in rust

then there are tokio-lessons and tokio tutorial which teach how to use tokio runtime

and there are also good blogposts by phil-oop and rose wright on how async works

https://doc.rust-lang.org/book/ch17-00-async-await.html https://google.github.io/comprehensive-rust/concurrency/welc...

https://rust-lang.github.io/async-book/intro.html

https://youtu.be/ThjvMReOXYM https://youtu.be/o2ob8zkeq2s https://youtu.be/DkMwYxfSYNQ

https://github.com/freddiehaddad/tokio-lessons https://tokio.rs/tokio/tutorial

https://os.phil-opp.com/async-await/ https://dev.to/rosewrightdev/from-futures-to-runtimes-how-as...