pub unsafe fn memset(dst: *mut u8, byte: u8, n: usize)
Fill n bytes starting at dst with byte.
n
dst
byte
The fastest way to zero-fill or pattern-fill a memory region on the SVM.
dst must be valid for n bytes.