[−][src]Crate tcp_channel
SPSC channels in Rust, transmitted through anything that implements Read and Write. It uses bincode and serde for serialization and deserialization.
Structs
Receiver | The receiving side of a channel. |
ReceiverBuilder | A more convenient way of initializing receivers. |
Sender | The sending side of a channel. |
SenderBuilder | A more convenient way of initializing senders. |
Enums
BigEndian | Defines big-endian serialization. |
LittleEndian | Defines little-endian serialization. |
RecvError | |
SendError |
Constants
DEFAULT_MAX_SIZE |
Traits
ChannelRecv | |
ChannelSend | |
Endian |
Type Definitions
NativeEndian | Defines system native-endian serialization. |