[][src]Trait process_memory::PutAddress

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

A trait that defines that it is possible to put a buffer into the memory of something represented by a type.

Required methods

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

Put the data from a user-defined buffer at an address.

Errors

std::io::Error if an error occurs copying the address.

Loading content...

Implementors

impl PutAddress for ProcessHandle[src]

Loading content...