It is common to see the statement that “Rust cannot abstract over mutability”. Indeed,
many functions in the standard library have an immutable and a mutable variant, e.g.
RefCell::borrow() and RefCell::borrow_mut(). However, in some cases,
such as...
Read more »
Join our January edition of the Rust Linz Meetup and listen to Luca Palmieri talk about Error Handling... (more…)
Read more »
Introduction Rudroid - this might arguably be one of the worst Android emulators possible. In this blog, we’ll write an emulator that can run a ‘Hello World’ Android ELF binary. While doing this, we will learn how to go about writing our own emulators.
Wr... (more…)
Read more »
Historically, running cargo upgrade on: # Cargo.toml # ... [dependencies] getargs = "0.5.0" structopt = "*" thiserror = "*" used to become # Cargo.toml # ... [dependen... (more…)
Read more »