The Unsafe Chronicles: Exhibit A: Aliasing Boxes
Video Statistics and Information
Channel: Jon Gjengset
Views: 11,616
Rating: 4.9774013 out of 5
Keywords: rust, unsafe, soundness
Id: EY7Wi9fV5bk
Channel Id: undefined
Length: 97min 9sec (5829 seconds)
Published: Sat Dec 12 2020
Please note that this website is currently a work in progress! Lots of interesting data and statistics to come.
These streams are really good and are making me learn a lot more about rust, and other programming languages, that I use, in general. They also help understand how other, more accomplished, people approach writing software. That knowledge is invaluable. Thank you!
Love your videos! Thank you!
Nice video!
When we said "don't use
mem::transmute
, it's dangerous", this isn't what we meant ;)Thanks, this was insightful and TIL about left_right!
The emergent behavior of MaybeUninit here is incredibly interesting. Since the pointer it gives you is valid for reading the data but doesn't necessarily guarantee at any point that it will be exactly an instance, it allows "partially" initialized data, like a Box which has its data initialized but isn't Unique