Copies memory between two non-overlapping pointers.
unsafe extern "rust-intrinsic" fn copy_nonoverlapping<T>(src: *const T, dst: *mut T, count: usize) -> ()
| Name | Description |
|---|---|
| src | The source of the memory. |
| dst | Where the memory will be stored. |
| count | The number of |
Never use this function. Use :copy: instead.