(&mut self)
| 211 | } |
| 212 | |
| 213 | fn currency_requested(&mut self) { |
| 214 | self.last_request = Instant::now(); |
| 215 | } |
| 216 | |
| 217 | fn is_currency_still_desired(&self) -> bool { |
| 218 | self.last_request + SERVE_TTL * 3 > Instant::now() |
no outgoing calls
no test coverage detected