Looking through some of the types of code you will be working with if you're doing unsafe Rust, and some of the unsafe types you might want to use. S… ...more
If you write unsafe Rust, you need to reason about "undefined behaviour". We talk through what that means, and try to develop an intuition about why w… ...more
The unsafe keyword in Rust means two things: "You must read the docs!" or "I promise I read the docs and followed the rules!". Series: Language basic… ...more
There is a special mode in Rust programs called unsafe - why do we need it? Series: Language basics, More syntax, Traits and generics, Building appli… ...more
Writing a mini client to connect to our async Rust chat server. Series: Language basics, More syntax, Traits and generics, Building applications, Con… ...more