ezcache::generative

Trait GenCacheStore

Source
pub trait GenCacheStore: CacheStore<Key = Self::Key, Value = Self::Value> {
    type Key;
    type Value;
    type Args;

    // Required methods
    fn gen(
        &self,
        key: impl Borrow<<Self as GenCacheStore>::Key>,
        args: Self::Args,
    ) -> <Self as GenCacheStore>::Value;
    fn get_or_gen(
        &self,
        key: impl Borrow<<Self as GenCacheStore>::Key>,
        args: Self::Args,
    ) -> <Self as GenCacheStore>::Value;
    fn get_or_new(
        &mut self,
        key: impl Borrow<<Self as GenCacheStore>::Key>,
        args: Self::Args,
    ) -> <Self as GenCacheStore>::Value;
    fn gen_new(
        &mut self,
        key: impl Borrow<<Self as GenCacheStore>::Key>,
        args: Self::Args,
    ) -> <Self as GenCacheStore>::Value;
}
Expand description

Infallible generative cache store.

Required Associated Types§

Required Methods§

Source

fn gen( &self, key: impl Borrow<<Self as GenCacheStore>::Key>, args: Self::Args, ) -> <Self as GenCacheStore>::Value

Generate a new value without checking cache or adding the value to it.

Source

fn get_or_gen( &self, key: impl Borrow<<Self as GenCacheStore>::Key>, args: Self::Args, ) -> <Self as GenCacheStore>::Value

Get the value from cache or generate a new one without adding it.

Source

fn get_or_new( &mut self, key: impl Borrow<<Self as GenCacheStore>::Key>, args: Self::Args, ) -> <Self as GenCacheStore>::Value

Get the value from cache or generate a new one adding it.

Source

fn gen_new( &mut self, key: impl Borrow<<Self as GenCacheStore>::Key>, args: Self::Args, ) -> <Self as GenCacheStore>::Value

Generate a new value without checking cache and add the value to it, possibly overwriting previous values.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<K, V, A, S: CacheStore<Key = K, Value = V>, F: Fn(&K, A) -> V> GenCacheStore for GenCacheStoreWrapper<K, V, A, S, F>

Implement GenCacheStore

Source§

type Key = K

Source§

type Value = V

Source§

type Args = A