aex 0.1.6

A web server for rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! # TCP Module
//!
//! TCP protocol support for the server.
//!
//! ## Components
//!
//! - `router`: Command-based TCP router with frame validation
//! - `types`: Frame and Command traits, RawCodec implementation
//! - `listeners`: TCP connection listeners
//! - `macros`: TCP routing macros

pub mod listeners;
pub mod macros;
pub mod router;
pub mod types;