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§
Sourcefn ts_gen(
&'lock self,
key: &'lock <Self as ThreadSafeGenCacheStore<'lock>>::Key,
args: Self::Args,
) -> <Self as ThreadSafeGenCacheStore<'lock>>::Value
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.
Sourcefn 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_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.
Sourcefn ts_get_or_new(
&'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
Get the value from cache or generate a new one adding it.
Sourcefn ts_gen_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
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>
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>
Implement ThreadSafeCacheStore