Resets the token bucket: budget set to max capacity and last-updated set to now.
(&mut self)
| 529 | impl TokenBucket { |
| 530 | // Resets the token bucket: budget set to max capacity and last-updated set to now. |
| 531 | fn reset(&mut self) { |
| 532 | self.budget = self.size; |
| 533 | self.last_update = Instant::now(); |
| 534 | } |
| 535 | |
| 536 | fn get_last_update(&self) -> &Instant { |
| 537 | &self.last_update |
no outgoing calls