You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a use case where the value being fetched through the cache may or may not exist. If it exists, the fetch may fail. Therefor I would like to be able to use some combination of optionally_get_with and try_get_with that would return Option<Result<V>>, and only caches type V if the future returns Some(Ok(V)).