Function lrs::intrinsics::copy

Copies memory between two pointers.

Syntax

unsafe extern "rust-intrinsic" fn copy<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