You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Within an unsafe block, Rust turns off many of its safety checks.
This is misleading and should not be in the documentation. For example, unsafe {} does not let you use a moved value. Instead, it lets you use features (such as raw pointers and transmute) that are otherwise forbidden.