How not to rely on inheritance As opposed to many languages, Rust doesn't have a concept of inheritance, relying instead on Traits. In this talk, we'll talk ... (more…)
Read more »
A Rust raytracer over curved spacetimes. Contribute to fragarriss/CurVis development by creating an account on GitHub. (more…)
Read more »
We’re really excited to announce that AWS is sponsoring the Rust programming language! Rust is designed for writing and maintaining fast, reliable, and efficient code. It has seen considerable uptake since its first stable release four years ago, with com... (more…)
Read more »
All networking applications essentially boil down to stringing together
multiple asynchronous calls in the right way.
Traditionally for programs written in C this would be done through
registering callbacks where the callee either handles the event itself... (more…)
Read more »
I recently wrote an article about writing events in Rust. I must admit I wasn’t entirely satisfied with the solution I came to. My previous code used a clunky macro capture pattern to define a… (more…)
Read more »