pub trait PutAddress {
// Required method
fn put_address(&self, addr: usize, buf: &[u8]) -> Result<()>;
}Expand description
A trait that defines that it is possible to put a buffer into the memory of something represented by a type.
Required Methods§
Implementors§
impl PutAddress for ProcessHandle
Here we use mach_vm_write to write a buffer to some arbitrary address on a process.