Cached, background computed value. Created via [`Cached::default`].
| 45 | /// |
| 46 | /// Created via [`Cached::default`]. |
| 47 | pub struct Cached<V: Default>(Arc<CachedInner<V>>); |
| 48 | |
| 49 | impl<V: Default> Default for Cached<V> { |
| 50 | fn default() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected