-
Book Overview & Buying
-
Table Of Contents
Rust Web Programming - Third Edition
By :
We are so close to building Rust code that handles HTTP requests. However, before we do that, it would be beneficial to really understand async programming in Rust, as the average web framework utilizes async code. However, it must be noted that you do not need to understand async code fully to code web servers in Rust. I have met plenty of web programmers who have built adequate servers who do not know how async code works under the hood.
Feel free to skip this chapter if you are stretched for time or do not want to understand async Rust code at a deeper level. This chapter is isolated, so if you skip it, it will not affect the microservices system that we are building throughout the book.
If you are unsure, I would highly advise that you complete this chapter. Understanding how async code works will give you a stronger ability to debug issues and avoid pitfalls. It will also enable you to utilize async Rust fully, diversifying the solutions you can offer...