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
There are a number of common tricks to writing unsafe Rust that tend to be just passed around as received wisdom, but it's not particularly easy or obvious. For some use cases using unsafe pointers is just easier, so we should cater to this with nicer library functions. This is an open-ended task to identify common unsafe patterns and extract them into the standard library. The only things I have in mind off hand are alloc and free functions to encapsulate the transmutes from unique pointers.