Function std::slice::from_raw_mut_bufUnstable [-]  [+] [src]

pub unsafe fn from_raw_mut_buf<T>(p: &'a *mut T, len: uint) -> &'a mut [T]

Performs the same functionality as from_raw_buf, except that a mutable slice is returned.

This function is unsafe for the same reasons as from_raw_buf, as well as not being able to provide a non-aliasing guarantee of the returned mutable slice.