kayrx 0.7.5

The Kayrx Framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! TCP utility types

pub mod listener;
pub use listener::TcpListener;

mod incoming;
pub use incoming::Incoming;

mod split;
pub use split::{ReadHalf, WriteHalf};

pub mod stream;
pub use stream::TcpStream;