Improving our example 2 – Coroutines, Self-Referential Structs, and Pinning

Let’s set everything up for our next version of this example: Note You can find this example in this book’s GitHub repository in the ch10/b-coroutines-references folder. This time, we’ll learn

Read More

NOTE – Coroutines, Self-Referential Structs, and Pinning-1

Futures created by async/await in Rust store this data in a slightly more efficient manner. In our example, we store every variable in a separate struct since I think it’s

Read More

Improving our base example – Coroutines, Self-Referential Structs, and Pinning

We want to see how we can improve our state machine so that it allows us to hold variables across wait points. To do that, we need to store them

Read More

Improving our example 1 – variables – Coroutines, Self-Referential Structs, and Pinning

So, let’s recap what we have at this point by continuing where we left off in the previous chapter. We have the following: It’s not that bad – we might

Read More

Technical requirements – Coroutines, Self-Referential Structs, and Pinning

In this chapter, we’ll start by improving our coroutines by adding the ability to store variables across state changes. We’ll see how this leads to our coroutines needing to take

Read More