connect 0.2.4

message queue abstraction over async network streams
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! TCP transport client and listener implementations.
//!
//! <br/>
//!
//! This module primarily exposes the TCP client implementation over a [`Connection`] type and the
//! TCP listener implementation as [`TcpListener`].

#[allow(unused_imports)]
pub(crate) use crate::Connection;

pub(crate) mod client;
pub(crate) mod listener;

pub use client::*;
pub use listener::*;