| 30 | static UPDATE_CTR: AtomicUsize = AtomicUsize::new(1); |
| 31 | |
| 32 | struct CachedValue<V> { |
| 33 | created: DateTime<Utc>, |
| 34 | input_hash: u64, |
| 35 | value: V, |
| 36 | } |
| 37 | |
| 38 | struct CachedInner<V> { |
| 39 | max_lifetime: Duration, |
nothing calls this directly
no outgoing calls
no test coverage detected