(&self, now: i64)
| 145 | |
| 146 | impl ManagedLifecycle { |
| 147 | fn is_expired(&self, now: i64) -> bool { |
| 148 | self.expires_at <= now |
| 149 | } |
| 150 | |
| 151 | fn renew(&mut self, now: i64, ttl_seconds: i64) { |
| 152 | self.updated_at = now; |
no outgoing calls
no test coverage detected