Module essrpc::transports

source ·
Expand description

Transport implementations and helpers.

Structs

Transport implementation using Bincode serialization. Can be used over any Read+Write channel (local socket, internet socket, pipe, etc). The present implementation is naive with regards to this channel – no buffering is performed.
Transport implementation over JSON-RPC. Can be used over any Read+Write channel (local socket, internet socket, pipe, etc).
Type which combines a Read and a Write to implement both Read and Write in a single type. May be useful in satisfying the construction requirements of transports such as BincodeTransport or JSONTransport.