As in previous years, I offer a summary of my experiences at Rust Nation UK. This overview is primarily intended for decision-makers with a strong technical background who value concise updates on recent developments. The key topics include:
- WebAssembly - Embedding in the browser, the cloud, or on edge devices
- The surprise Aha-Effect - Blazingly fast mutation testing
- The Rust London Meetup - Meeting key community members
- An AI Brunch - Deserving a separate post
Workshop Day - WebAssembly
I booked the workshop: “Containers are dead! Long live WebAssembly!” by my former teammate Jonas Kruckenberg. With Jonas, I was working at Mainmatter to port the Redis Search Extension to Rust. Jonas is also well known in the Rust Dortmund Community as he presented his WebAssembly based operating system k23 at our very first event. You find the talk on YouTube..
Why should you bother about WebAssembly? Because it has many use cases besides writing functionality in different languages than JavaScript for a browser.

It can be embedded in the cloud (serverless), and there it reduces cold start time. On edge-devices, for example, in automotive, it enhances security by sandboxing and empowers developers to write modules in different languages.
Christof Petig, who is very active in safety-critical field in automotive, gave a talk about WebAssembly’s usage in cars for our Rust Dortmund Community.
But let me summarize: WebAssembly serves as a modern, language-agnostic, secure, and high-performance alternative to earlier component models like COM or CORBA, enabling broader interoperability by using a bytecode intermediate language that most WebAssembly runtimes can just-in-time compile to native binaries.
Conference Day - The surprise Aha-Effect
The conference was hilarious. I had many nice chats and met old friends. Nonetheless let me focus on my surprise aha-effect related to mutation testing.
The main idea of mutation testing is to mutate your program. For example, you replace your Plus operator with a Minus operator, or you mix up conditions in an if,else-if,else block. Then you expect your test suite to fail. if it does not fail, you probably should add a test that covers that case.
The challenge here is that mutating a native program means you have to recompile it and that's turtle slow. However, PhD student Zalán Lévai works on mutest-rs. A Rust crate that uses the compiler rustc as a library and changes the AST in memory, thus reducing the number of required compilations a lot and making it blazingly fast (in comparison). If you want more details, they published a journal paperA Comprehensive Empirical and Theoretical Analysis of Batching Algorithms for Efficient, Safe, Parallel Mutation Analysis in Rustearlier this year.

A particularly striking result: workloads that require approximately 20 hours with cargo-mutants complete in roughly 5 minutes using mutest-rs, thanks to in-memory AST transformations and compiler-as-library integration.
Pre-Conference Day - Rust London Meetup
Before all of that, we gathered at the offices of TrueLayer for the Rust London Meetup. I was happy to reconnect with Rob Ede, well known for the Rust backend crate Actix Web and with Orhun, maintainer of the popular Ratatui TUI library.
Orhun, a content creator from Turkey, shares a mindset around discipline and sport; many in the community regard him as an exceptional tinkerer.

As always, Ernest and Ethan did an amazing job with the organization and for those of you who didn't know: The Rust London Community and their organizers in particular fueled me with the idea to start the Rust Dortmund Meetup.
After Conference Brunch - Rust in a World of AI
On the post conference day we met to speak about Rust in a world of AI. However, I think this topic deserves an entire blog post on its own. This has two reasons:
- The week after Rust Nation, I will attend the “Instandhaltungstage” and the Impulse Event for young professionals in the chemical industry. There, I plan to go to many AI related talks to grasp an understanding of what AI means in that field at the moment.
- While AI will not replace software engineers entirely, agentic systems are advancing rapidly, and many developers may currently underestimate their capabilities. Importantly, insights from agentic programming are likely to inform superior tooling across other industries.
Overall, Rust Nation UK 2026 underscored the rapid maturation of Rust in areas like WebAssembly, testing tooling, and emerging AI integration—trends worth monitoring closely for technical leadership roles.
