[][src]Trait akhramov_read_process_memory::CopyAddress

pub trait CopyAddress {
    fn copy_address(&self, addr: usize, buf: &mut [u8]) -> Result<()>;
}

A trait that provides a method for reading memory from another process.

Required methods

fn copy_address(&self, addr: usize, buf: &mut [u8]) -> Result<()>

Try to copy buf.len() bytes from addr in the process self, placing them in buf.

Loading content...

Implementors

impl CopyAddress for ProcessHandle[src]

Loading content...