echosrv 0.3.0

A high-performance set of async echo server library built with Tokio for testing and development environments
Documentation
1
2
3
4
5
6
7
8
9
10
//! Common traits and types used across the echosrv library
//!
//! This module contains the core traits that define the interface
//! for echo servers and clients.

pub mod test_utils;
pub mod traits;

pub use test_utils::create_controlled_test_server_with_limit;
pub use traits::{EchoClient, EchoServerTrait};