hyper_util/client/pool/mod.rs
1//! Composable pool services
2//!
3//! This module contains various concepts of a connection pool separated into
4//! their own concerns. This allows for users to compose the layers, along with
5//! any other layers, when constructing custom connection pools.
6
7pub mod cache;
8pub mod map;
9pub mod negotiate;
10pub mod singleton;