Skip to main content

write_to_memory

Function write_to_memory 

Source
pub unsafe fn write_to_memory(dst: *mut u8, src: &[u8])
Expand description

Write bytes into WASM linear memory at the given pointer.

ยงSafety

dst must point to at least src.len() bytes of valid, writable memory.