Copies a number of elements between two non-overlapping pointers.
unsafe fn memcpy<T>(dst: *mut T, src: *const T, n: usize) -> ()
| Name | Description |
|---|---|
| dst | The pointer that will be written to. |
| src | The pointer that will be read from. |
| n | The number of elements that will be copied. |
If the pointers overlap, the behavior is undefined.