A Primer on Rust’s Result Type

The Result type is the de facto way of handling errors in Rust, and it is clever; maybe too clever. I will explain Result in plain English. Read more

Similar

Async/Await for AVR with Rust

With the recent ability for Rust to target AVR, it's time for me to bring my favorite feature of Rust to Arduino: async/await. Asynchronous code allows for doing (seemingly) multiple things at once, without the memory or CPU overhead of threads. (more…)

Read more »

This Week in Rust 396

Hello and welcome to another issue of This Week in Rust! Rust is a systems language pursuing the trifecta: safety, concurrency, and speed. This is a weekly summary of its progress and community. Want something mentioned? Tweet us at @ThisWeekInRust or sen... (more…)

Read more »