(&self, other: &Self)
| 66 | } |
| 67 | impl Ord for ScoredRow { |
| 68 | fn cmp(&self, other: &Self) -> std::cmp::Ordering { |
| 69 | other.score.total_cmp(&self.score) |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | let mut min_heap: BinaryHeap<ScoredRow> = BinaryHeap::with_capacity(top_k + 1); |
no outgoing calls