pub trait ThreadSafeTryGenCacheStore<'lock>: ThreadSafeTryCacheStore<'lock, Key = Self::Key, Value = Self::Value> {
type Key;
type Value;
type Error;
type Args;
// Required methods
fn ts_try_gen(
&'lock self,
key: &'lock <Self as ThreadSafeTryGenCacheStore<'lock>>::Key,
args: Self::Args,
) -> Result<<Self as ThreadSafeTryGenCacheStore<'lock>>::Value, <Self as ThreadSafeTryGenCacheStore<'lock>>::Error>;
fn ts_try_get_or_gen(
&'lock self,
key: &'lock <Self as ThreadSafeTryGenCacheStore<'lock>>::Key,
args: Self::Args,
) -> Result<<Self as ThreadSafeTryGenCacheStore<'lock>>::Value, <Self as ThreadSafeTryGenCacheStore<'lock>>::Error>;
fn ts_try_get_or_new(
&'lock self,
key: &'lock <Self as ThreadSafeTryGenCacheStore<'lock>>::Key,
args: Self::Args,
) -> Result<<Self as ThreadSafeTryGenCacheStore<'lock>>::Value, <Self as ThreadSafeTryGenCacheStore<'lock>>::Error>;
fn ts_try_gen_new(
&'lock self,
key: &'lock <Self as ThreadSafeTryGenCacheStore<'lock>>::Key,
args: Self::Args,
) -> Result<<Self as ThreadSafeTryGenCacheStore<'lock>>::Value, <Self as ThreadSafeTryGenCacheStore<'lock>>::Error>;
}
Expand description
Falible thread safe generative cache store.
Required Associated Types§
Required Methods§
Sourcefn ts_try_gen(
&'lock self,
key: &'lock <Self as ThreadSafeTryGenCacheStore<'lock>>::Key,
args: Self::Args,
) -> Result<<Self as ThreadSafeTryGenCacheStore<'lock>>::Value, <Self as ThreadSafeTryGenCacheStore<'lock>>::Error>
fn ts_try_gen( &'lock self, key: &'lock <Self as ThreadSafeTryGenCacheStore<'lock>>::Key, args: Self::Args, ) -> Result<<Self as ThreadSafeTryGenCacheStore<'lock>>::Value, <Self as ThreadSafeTryGenCacheStore<'lock>>::Error>
Generate a new value without checking cache or adding the value to it.
Sourcefn ts_try_get_or_gen(
&'lock self,
key: &'lock <Self as ThreadSafeTryGenCacheStore<'lock>>::Key,
args: Self::Args,
) -> Result<<Self as ThreadSafeTryGenCacheStore<'lock>>::Value, <Self as ThreadSafeTryGenCacheStore<'lock>>::Error>
fn ts_try_get_or_gen( &'lock self, key: &'lock <Self as ThreadSafeTryGenCacheStore<'lock>>::Key, args: Self::Args, ) -> Result<<Self as ThreadSafeTryGenCacheStore<'lock>>::Value, <Self as ThreadSafeTryGenCacheStore<'lock>>::Error>
Get the value from cache or generate a new one without adding it.
Sourcefn ts_try_get_or_new(
&'lock self,
key: &'lock <Self as ThreadSafeTryGenCacheStore<'lock>>::Key,
args: Self::Args,
) -> Result<<Self as ThreadSafeTryGenCacheStore<'lock>>::Value, <Self as ThreadSafeTryGenCacheStore<'lock>>::Error>
fn ts_try_get_or_new( &'lock self, key: &'lock <Self as ThreadSafeTryGenCacheStore<'lock>>::Key, args: Self::Args, ) -> Result<<Self as ThreadSafeTryGenCacheStore<'lock>>::Value, <Self as ThreadSafeTryGenCacheStore<'lock>>::Error>
Get the value from cache or generate a new one adding it.
Sourcefn ts_try_gen_new(
&'lock self,
key: &'lock <Self as ThreadSafeTryGenCacheStore<'lock>>::Key,
args: Self::Args,
) -> Result<<Self as ThreadSafeTryGenCacheStore<'lock>>::Value, <Self as ThreadSafeTryGenCacheStore<'lock>>::Error>
fn ts_try_gen_new( &'lock self, key: &'lock <Self as ThreadSafeTryGenCacheStore<'lock>>::Key, args: Self::Args, ) -> Result<<Self as ThreadSafeTryGenCacheStore<'lock>>::Value, <Self as ThreadSafeTryGenCacheStore<'lock>>::Error>
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, E, A, StErr: Into<E> + 'lock, FnErr: Into<E> + 'lock, S: ThreadSafeTryCacheStore<'lock, Key = K, Value = V, Error = StErr>, F: Fn(&K, A) -> Result<V, FnErr>> ThreadSafeTryGenCacheStore<'lock> for ThreadSafeGenTryCacheStoreWrapper<'lock, K, V, E, A, StErr, FnErr, S, F>
impl<'lock, K, V: Clone, E, A, StErr: Into<E> + 'lock, FnErr: Into<E> + 'lock, S: ThreadSafeTryCacheStore<'lock, Key = K, Value = V, Error = StErr>, F: Fn(&K, A) -> Result<V, FnErr>> ThreadSafeTryGenCacheStore<'lock> for ThreadSafeGenTryCacheStoreWrapper<'lock, K, V, E, A, StErr, FnErr, S, F>
Implement ThreadSafeCacheStore