| 25 | /// Message combining command and response channel |
| 26 | #[derive(Debug, Serialize, Deserialize)] |
| 27 | pub struct IpcMessage { |
| 28 | pub command: IpcCommand, |
| 29 | pub response_channel: IpcSender<IpcResponse>, |
| 30 | } |
| 31 | |
| 32 | /// Client for sending commands from runner to memtrack |
| 33 | pub struct MemtrackIpcClient { |
nothing calls this directly
no outgoing calls
no test coverage detected