books-futures-explained icon indicating copy to clipboard operation
books-futures-explained copied to clipboard

The repository for the book Futures Explained in 200 lines of Rust

Results 6 books-futures-explained issues
Sort by recently updated
recently updated
newest added

src/Introduction has a link "articles from stejpang" to https://stjepang.github.io/ which is dead

When I went thru the `Pin` things, I noticed that `to_borrow: String` is actually moved to the state enum. So, why not ditch all the unsafe stuff and borrow `to_borrow`...

Instead of using slides or animations to visualize what's going on, creating something like this could be much better: http://latentflip.com/loupe/ [github repo](https://github.com/latentflip/loupe).

enhancement

Just wanted to say thanks for writing the book. It's taking a while to really get gelled in my head as to what's going on, but your book is definitely...

Hey, thank you really enjoyed this tutorial. So we have ``` while !*resumable { resumable = self.1.wait(resumable).unwrap(); } ``` When thread expires, we call wake, which calls unpark, which will...