In this talk, we’ll go through some real-life examples of using Rust features like traits, newtype wrappers, generics, and macros for creating financial software. We’ll look at how regular application code can benefit from the features Rust provides.
Many people think of Rust primarily as a systems programming language focused on memory safety and high performance. All that is true, but there’s much more to the story. Rust is one of the best languages out there for writing strongly typed code: code that takes advantage of type level features to ensure certain classes of bugs cannot happen.
But Rust isn’t magic. Simply using a programming language does not bestow strong typing upon the code. You need to intentionally opt-in to using these features to get their full benefit.
In this talk, we’ll go through some real-life examples of using Rust features like traits, newtype wrappers, generics, and macros for creating financial software. We’ll look at how regular application code can benefit from the features Rust provides.
On top of that, we’ll see how the amazing serde library provides great data marshaling guarantees, and how we can leverage WASM compilation to get these benefits outside the server too.
Discover how Cargo extensions can revolutionize your Rust development workflow in this insightful talk.
I applied PGO to many kinds of software, collected a lot of carefully hidden traps on my journey, and found multiple ways how to avoid them. In this talk, I want to share with you my experience.
I'd like to share what we've learned in the last 2 years, when building Iggy.rs message streaming infrastructure from the ground up.
This talk explores lessons learned while building a CRDT library with JSON semantics, aimed at application developers.