1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Stream-based and datagram-based communication implementations.
//!
//! Also includes other utilities useful for reading and writing
//! parcels.

pub use self::middleware::Middleware;
pub use self::reader::Reader;

/// Datagram-based over the wire communication.
pub mod dgram;
mod reader;
#[macro_use]
pub mod middleware;
/// Stream-based over the wire communication.
pub mod stream;