fn cmp()

in src/requests.rs [373:377]


    fn cmp(&self, other: &Self) -> Ordering {
        self.priority
            .cmp(&other.priority)
            .then_with(|| self.tie.cmp(&other.tie).reverse())
    }