Skip to main content

tower_balance/p2c/
mod.rs

1//! A Power-of-Two-Choices Load Balancer
2
3mod layer;
4mod make;
5mod service;
6
7#[cfg(test)]
8mod test;
9
10pub use layer::BalanceLayer;
11pub use make::{BalanceMake, MakeFuture};
12pub use service::Balance;