Function memcpy

Source
unsafe fn memcpy(dst: *mut u8, src: *const u8, len: usize)
Expand description
  • src should be valid for reads of len bytes.

  • dst should be valid for writes of len bytes.