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.
We will explore some ways to make Async Rust programming more enjoyable and more efficient at the same time.
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 dives into common anti-patterns, offering practical tips to sidestep frustration. Whether you're new to Rust or leveling up, you’ll leave with insights to write clean, idiomatic, and maintainable code—without the tears.
In this talk, we will discuss how you can use Durable Execution to harden your applications in a few key areas: workflows, asynchronous tasks, microservice orchestration, and event processing.