Function std::ptr::copy_nonoverlapping_memory

pub unsafe fn copy_nonoverlapping_memory<T, P: RawPtr<T>>(dst: *mut T, src: P, count: uint)

Copies data from one location to another.

Copies count elements (not bytes) from src to dst. The source and destination may not overlap.