djin_protocol/wire/
mod.rs

1//! Stream-based and datagram-based communication implementations.
2//!
3//! Also includes other utilities useful for reading and writing
4//! parcels.
5
6pub use self::middleware::Middleware;
7pub use self::reader::Reader;
8
9/// Datagram-based over the wire communication.
10pub mod dgram;
11mod reader;
12#[macro_use]
13pub mod middleware;
14/// Stream-based over the wire communication.
15pub mod stream;
16
17