| 36 | } |
| 37 | |
| 38 | struct CachedInner<V> { |
| 39 | max_lifetime: Duration, |
| 40 | being_constructed: AtomicBool, |
| 41 | value: ArcSwap<CachedValue<V>>, |
| 42 | } |
| 43 | |
| 44 | /// Cached, background computed value. |
| 45 | /// |
nothing calls this directly
no outgoing calls
no test coverage detected