Function lrs::intrinsics::copy_nonoverlapping

Copies memory between two non-overlapping pointers.

Syntax

unsafe extern "rust-intrinsic" fn copy_nonoverlapping<T>(src: *const T, dst: *mut T, count: usize) -> ()

Arguments

NameDescription
src

The source of the memory.

dst

Where the memory will be stored.

count

The number of T objects to copy.

Remarks

Never use this function. Use :copy: instead.

See also