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
Currently, Rust has a core::raw::Slice type but no core::raw::MutSlice type - and the slice type has a data: _T. This forces people who want to get a *mut T into adding an additional (_T -> *mut T) cast - which may be undefined behaviour.
The text was updated successfully, but these errors were encountered:
Currently, Rust has a core::raw::Slice type but no core::raw::MutSlice type - and the slice type has a data: _T. This forces people who want to get a *mut T into adding an additional (_T -> *mut T) cast - which may be undefined behaviour.
The text was updated successfully, but these errors were encountered: