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