Explore >> Select a destination


You are here

ohadravid.github.io
| | qsantos.fr
1.7 parsecs away

Travel
| | Although I am now mostly comfortable with Rust, some concepts still elude me. One of them is the exact meaning of Unpin. The documentation says: The documentation of Unpin says: Types that do not require any pinning guarantees. Where pinning is described as: From this, you could naturally deduce that Unpin is the trait that ... Continue reading You can move !Unpin ?
| | tokio.rs
3.3 parsecs away

Travel
| | Tokio is a runtime for writing reliable asynchronous applications with Rust. It provides async I/O, networking, scheduling, timers, and more.
| | boats.gitlab.io
4.8 parsecs away

Travel
| | It's hard to believe its been almost 6 weeks since the last post I made about async/await in Rust. So much has happened that these last several weeks have flown by. We've made exceptionally good progress on solving the problem laid out in the first post of this series, and I want to document it all for everyone. Future and the pinning API Last month I wrote an RFC called "Standard library API for immovable types".
| | hashblog.thepolyglotprogrammer.com
21.6 parsecs away

Travel
| On this post I intend to walk down memory lane a bit to understand what exactly are Smart Pointers? Where do they come from? And of course, how do they work