ezcache::thread_safe::generative

Trait ThreadSafeGenCacheStore

Source
pub trait ThreadSafeGenCacheStore<'lock>: ThreadSafeCacheStore<'lock, Key = Self::Key, Value = Self::Value>
where Self: 'lock,
{ type Key; type Value; type Args; // Required methods fn ts_gen( &'lock self, key: &'lock <Self as ThreadSafeGenCacheStore<'lock>>::Key, args: Self::Args, ) -> <Self as ThreadSafeGenCacheStore<'lock>>::Value; fn ts_get_or_gen( &'lock self, key: &'lock <Self as ThreadSafeGenCacheStore<'lock>>::Key, args: Self::Args, ) -> <Self as ThreadSafeGenCacheStore<'lock>>::Value; fn ts_get_or_new( &'lock self, key: &'lock <Self as ThreadSafeGenCacheStore<'lock>>::Key, args: Self::Args, ) -> <Self as ThreadSafeGenCacheStore<'lock>>::Value; fn ts_gen_new( &'lock self, key: &'lock <Self as ThreadSafeGenCacheStore<'lock>>::Key, args: Self::Args, ) -> <Self as ThreadSafeGenCacheStore<'lock>>::Value; }
Expand description

Infalible thread safe generative cache store. This trait is HIGHLY discouraged for the reasons explained in thread_safe

Required Associated Types§

Required Methods§

Source

fn ts_gen( &'lock self, key: &'lock <Self as ThreadSafeGenCacheStore<'lock>>::Key, args: Self::Args, ) -> <Self as ThreadSafeGenCacheStore<'lock>>::Value

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

Source

fn ts_get_or_gen( &'lock self, key: &'lock <Self as ThreadSafeGenCacheStore<'lock>>::Key, args: Self::Args, ) -> <Self as ThreadSafeGenCacheStore<'lock>>::Value

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

Source

fn ts_get_or_new( &'lock self, key: &'lock <Self as ThreadSafeGenCacheStore<'lock>>::Key, args: Self::Args, ) -> <Self as ThreadSafeGenCacheStore<'lock>>::Value

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

Source

fn ts_gen_new( &'lock self, key: &'lock <Self as ThreadSafeGenCacheStore<'lock>>::Key, args: Self::Args, ) -> <Self as ThreadSafeGenCacheStore<'lock>>::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<'lock, K, V: Clone, A, S: ThreadSafeCacheStore<'lock, Key = K, Value = V>, F: Fn(&K, A) -> V> ThreadSafeGenCacheStore<'lock> for ThreadSafeGenCacheStoreWrapper<'lock, K, V, A, S, F>

Source§

type Key = K

Source§

type Value = V

Source§

type Args = A