(&self, other: &TimedActivator)
| 139 | // We want the activator_queue to act like a min-heap. |
| 140 | impl Ord for TimedActivator { |
| 141 | fn cmp(&self, other: &TimedActivator) -> Ordering { |
| 142 | other.at.cmp(&self.at) |
| 143 | } |
| 144 | } |
| 145 | |
| 146 | impl PartialOrd for TimedActivator { |
no outgoing calls
no test coverage detected