fairqueue 0.2.0

Spatially distancing fair queue. A kind of queue for sequential round-robin processing.
Documentation
1
2
3
4
5
/// Trait for defining grouping logic for fair scheduling structures.
/// Values belong to the same group when `is_same_group` returns true.
pub trait FairGroup {
    fn is_same_group(&self, other: &Self) -> bool;
}