Function collections::slice::from_raw_parts_mut
[−]
[src]
pub unsafe fn from_raw_parts_mut<T>(p: *mut T, len: usize) -> &'a mut [T]
Performs the same functionality as from_raw_parts
`from_raw_parts`, except that a mutable
slice is returned.
This function is unsafe for the same reasons as from_raw_parts
`from_raw_parts`, as well
as not being able to provide a non-aliasing guarantee of the returned
mutable slice.