Explore >> Select a destination


You are here

matklad.github.io
| | jmmv.dev
17.2 parsecs away

Travel
| | Dependency injection is one of my favorite design patterns to develop highly-testable and modular code. Unfortunately, applying this pattern by taking Rust traits as arguments to public functions has unintended consequences on the visibility of private symbols. If you are not careful, most of your crate-internal APIs might need to become public just because you needed to parameterize a function with a trait. Let's look at why this happens and what we can do about it.
| | surma.dev
15.1 parsecs away

Travel
| | What follows is a brain dump of everything I know about compiling Rust to WebAssembly. Enjoy.
| | www.ductile.systems
16.7 parsecs away

Travel
| | Rust has a runtime. No really it does! I blew past that aspect in my most recent post "Oxidizing the technical interview" when I put in the line: The greatest trick the Devil ever played was convincing C and Rust programmers their language has no runtime. and you can see
| | corrode.dev
57.3 parsecs away

Travel
| Recently, I found myself returning to a compelling series of blog posts titled Zero-cost futures in Rust by Aaron Turon about what would become the foundation of Rust's async ecosyste...