pub trait CopyAddress {
// Required method
fn copy_address(&self, addr: usize, buf: &mut [u8]) -> Result<()>;
}Expand description
A trait that provides a method for reading memory from another process.
pub trait CopyAddress {
// Required method
fn copy_address(&self, addr: usize, buf: &mut [u8]) -> Result<()>;
}A trait that provides a method for reading memory from another process.