net-pool 0.5.1

A set of types for network connection pool.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod backend;
/// 定义了一系列连接池相关的类型
pub mod error;
pub mod macros;
pub mod pool;
pub mod pools;
pub mod strategy;
pub mod trace;
pub mod utils;

// re-exports
pub use backend::*;
pub use error::Error;
pub use pool::*;
pub use pools::*;
pub use strategy::*;