DON'T DO THIS: the Signal app has the ability to make daily backups of your messages, and when you choose a folder to backup into, you can choose "Nex… ...more
Going through some exercises on Rust traits, designing a customised version of Vec. To see the exercises code as it was when I recorded the video: gi… ...more
Rust has a feature where if you import two things from the same module you can abbreviate it like this: use mypkg::{MyStruct1, MyStruct2}; If you pref… ...more
This time we tackle one of the most tricky areas for a new Rust programmer: lifetimes. The key point is that when we add lifetime bounds ('a or simila… ...more
A tour of some of the most interesting traits in the standard library including Add etc. to overload operators, Sized, Sync and Send for telling the c… ...more