pub trait ReadProcessMemory {
// Required method
fn read_process_memory(
&mut self,
base: usize,
buf: &mut [u8],
) -> Result<usize, CoreError>;
}Expand description
Trait for those able to read the process virtual memory.