Structs§
- Sendable
Data Source Bytes - Sendable
Data Source Reader - Sendable
File - Wraps a normal
std::fs::File
so it may be transmitted to other processes. - Sendable
Socket - Wraps normal sockets types (e.g.
std::net::TcpStream
) so they may be transmitted to other processes.
Enums§
- Sendable
Data Source - A source of data can be sent to other processes over a
MessageChannel
or similar mechanism. It may consist of a file handle, shared memory, or inline data.