Trait RemoteOperation

Source
pub trait RemoteOperation {
    // Required methods
    fn inject(&mut self, pid: Pid, syscall: usize) -> Result<u64>;
    fn revert(&mut self, pid: Pid, syscall: usize) -> Result<u64>;
}

Required Methods§

Source

fn inject(&mut self, pid: Pid, syscall: usize) -> Result<u64>

Source

fn revert(&mut self, pid: Pid, syscall: usize) -> Result<u64>

Implementors§