Module networking

Module networking 

Source
Expand description

Types for configuring network channels with serialization formats, transports, etc.

Structs§

NetworkingConfig
A network channel configuration with T as transport backend and S as the serialization backend.

Enums§

Bincode
Serialize items using the bincode crate.
NoSer
An unconfigured serialization backend.
Tcp
Send items across a length-delimited TCP channel.

Constants§

TCP
A network channel that uses length-delimited TCP for transport.

Traits§

NetworkFor
A networking backend implementation that supports items of type T.