Function lrs::ptr::memmove

Copies a number of elements between two, possibly overlapping, pointers.

Syntax

unsafe fn memmove<T>(dst: *mut T, src: *const T, n: usize) -> ()

Arguments

NameDescription
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.