Expand description
Types for configuring network channels with serialization formats, transports, etc.
Structs§
- Networking
Config - A network channel configuration with
Tas transport backend andSas the serialization backend. - Tcp
- Send items across a length-delimited TCP channel.
Enums§
- Bincode
- Serialize items using the
bincodecrate. - Fail
Stop - A TCP failure policy that stops sending messages after a failed connection.
- Lossy
- A TCP failure policy that allows messages to be lost.
- Lossy
Delayed Forever - A TCP failure policy that treats dropped messages as indefinitely delayed.
- Networking
Info - Describes the networking configuration for a network channel at the IR level.
- NoSer
- An unconfigured serialization backend.
- TcpFault
- The fault model for a TCP connection.
Constants§
- TCP
- A network channel that uses length-delimited TCP for transport.
Traits§
- Network
For - A networking backend implementation that supports items of type
T. - TcpFail
Policy - A failure policy for TCP connections, determining how the transport handles connection failures and what ordering guarantees the output stream provides.
- Transport
Kind - A transport backend for network channels.