Skip to main content

copy

Function copy 

Source
pub unsafe fn copy(dst: *mut u8, src: *const u8, len: usize)
Expand description

Copy bytes from src to dst, allowing overlap.

ยงSafety

src and dst must be valid for len bytes.