burger 0.1.0-rc.1

An experimental service framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Various load balancer implementations.

pub mod p2c;

#[doc(inline)]
pub use p2c::p2c;

/// Represents a change to a pool of [services](crate::Service).
#[derive(Debug)]
pub enum Change<K, V> {
    /// Inserts a service into the collection.
    Insert(K, V),
    /// Removes a service from the collection.
    Remove(K),
}