Struct cache_loader_async::cache_api::LoadingCache[][src]

pub struct LoadingCache<K, V> { /* fields omitted */ }

Implementations

impl<K: Eq + Hash + Clone + Send + 'static, V: Clone + Sized + Send + 'static> LoadingCache<K, V>[src]

pub fn new<T, F>(loader: T) -> (LoadingCache<K, V>, CacheHandle) where
    F: Future<Output = Option<V>> + Sized + Send + 'static,
    T: Fn(K) -> F + Send + 'static, 
[src]

pub async fn get(&self, key: K) -> Result<V, CacheLoadingError>[src]

pub async fn set(
    &self,
    key: K,
    value: V
) -> Result<Option<V>, CacheLoadingError>
[src]

pub async fn update<U>(
    &self,
    key: K,
    update_fn: U
) -> Result<V, CacheLoadingError> where
    U: FnOnce(V) -> V + Send + 'static, 
[src]

Trait Implementations

impl<K: Clone, V: Clone> Clone for LoadingCache<K, V>[src]

impl<K: Debug, V: Debug> Debug for LoadingCache<K, V>[src]

Auto Trait Implementations

impl<K, V> !RefUnwindSafe for LoadingCache<K, V>

impl<K, V> Send for LoadingCache<K, V> where
    K: Send,
    V: Send

impl<K, V> Sync for LoadingCache<K, V> where
    K: Send,
    V: Send

impl<K, V> Unpin for LoadingCache<K, V>

impl<K, V> !UnwindSafe for LoadingCache<K, V>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.