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>;
}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>;
}