Expand description
Traits for Inter-Process Communication (IPC) and some pre-implemented IPC methods.
Modules§
- pipe
pipe - IPC method implementation using Unix domain sockets and Windows named pipes.
- websocket
websocket - IPC method implementation using WebSocket.
Traits§
- IpcConnection
- Describes the behavior of an IPC connection.
- IpcListener
- Describes the behavior of an IPC listener which accepts incoming IPC connections.
Type Aliases§
- IoFuture
- A boxed
Sendfuture returningResult<T, IoError>, used as the return type of dyn-compatible trait methods in this module.