So, in this chapter, we did two things. First, we made some rather minor changes to our runtime so it works as an actual runtime for Rust futures. We tested
Read MoreCategory: Exams of IT
The future of asynchronous Rust – Creating Your Own Runtime
Some of the things that make async Rust different from other languages are unavoidable. Asynchronous Rust is very efficient, has low latency, and is backed by a very strong type
Read MoreExperimenting with our runtime – Creating Your Own Runtime
Note You’ll find this example in the book’s repository in the ch10/b-rust-futures-experiments folder. The different experiments will be implemented as different versions of the async_main function numbered chronologically. I’ll indicate
Read Morereactor.rs – Creating Your Own Runtime
The first thing we do is to make sure our dependencies are correct. We have to remove the dependency on our old Waker implementation and instead pull in these types
Read MoreINFO – Creating Your Own Runtime
This is an example of Rust adopting what turns out to be best practices from the ecosystem. For a long time, a popular way to construct wakers was by implementing
Read Moreexecutor.rs – Creating Your Own Runtime
The first thing we need to change in executor.rs is our dependencies. This time, we only rely on types from the standard library, and our dependencies section should now look
Read MorePin projections and structural pinning – Coroutines, Self-Referential Structs, and Pinning
Before we leave the topic of pinning, we’ll quickly explain what pin projections and structural pinning are. Both sound complex, but they are very simple in practice. The following diagram
Read MorePinning to the stack – Coroutines, Self-Referential Structs, and Pinning
Pinning to the stack can be somewhat difficult. In Chapter 5, we saw how the stack worked and we know that it grows and shrinks as values are popped and
Read MorePinning in Rust – Coroutines, Self-Referential Structs, and Pinning
The following diagram shows a slightly more complex self-referential struct so that we have something visual to help us understand: Figure 9.3 – Moving a self-referential struct with three fields
Read MoreWhat is a move? – Coroutines, Self-Referential Structs, and Pinning
A move in Rust is one of those concepts that’s unfamiliar to many programmers coming from C#, Javascript, and similar garbage-collected languages, and different from what you’re used to for
Read More