This article is a summary of Chapter 4.9.1 of Rust Course (course.rs/)
Code inside unsafe allows behaviors that are not permitted by the compiler in safe Rust, including:
Dereferencing a raw pointer
Invoking an unsafe or external function
accessin...