Expand description
Connection-oriented communication channels.
The main entity of this module is the Transport trait, which provides an
interface for establishing connections with other nodes, thereby negotiating
any desired protocols. The rest of the module defines combinators for
modifying a transport through composition with other transports or protocol upgrades.
Re-exports§
pub use self::choice::OrTransport;pub use self::memory::MemoryTransport;pub use self::upgrade::Upgrade;
Modules§
- and_
then - choice
- dummy
- global_
only - map
- map_err
- memory
- timeout
- Transports with timeouts on the connection setup.
- upgrade
- Configuration of transport protocol upgrades.
Structs§
- Boxed
- A
Boxedtransport is aTransportwhoseDial,ListenerandListenerUpgradefutures areBoxed and only theOutputtype is captured in a type variable. - Listener
Id - The ID of a single listener.
- Optional
Transport - Transport that is possibly disabled.
Enums§
- Transport
Error - An error during dialing or listening
on a
Transport. - Transport
Event - Event produced by
Transports.
Traits§
- Transport
- A transport provides connection-oriented communication between two peers through ordered streams of data (i.e. connections).