pub trait TryGenCacheStore: TryCacheStore<Key = Self::Key, Value = Self::Value, Error = Self::Error> {
type Key;
type Value;
type Error;
type Args;
// Required methods
fn try_gen(
&self,
key: impl Borrow<<Self as TryGenCacheStore>::Key>,
args: <Self as TryGenCacheStore>::Args,
) -> Result<<Self as TryGenCacheStore>::Value, <Self as TryCacheStore>::Error>;
fn try_get_or_gen(
&self,
key: impl Borrow<<Self as TryGenCacheStore>::Key>,
args: <Self as TryGenCacheStore>::Args,
) -> Result<<Self as TryGenCacheStore>::Value, <Self as TryCacheStore>::Error>;
fn try_get_or_new(
&mut self,
key: impl Borrow<<Self as TryGenCacheStore>::Key>,
args: <Self as TryGenCacheStore>::Args,
) -> Result<<Self as TryGenCacheStore>::Value, <Self as TryCacheStore>::Error>;
fn try_gen_new(
&mut self,
key: impl Borrow<<Self as TryGenCacheStore>::Key>,
args: <Self as TryGenCacheStore>::Args,
) -> Result<<Self as TryGenCacheStore>::Value, <Self as TryCacheStore>::Error>;
}
Expand description
Fallible generative cache store.
Required Associated Types§
Required Methods§
Sourcefn try_gen(
&self,
key: impl Borrow<<Self as TryGenCacheStore>::Key>,
args: <Self as TryGenCacheStore>::Args,
) -> Result<<Self as TryGenCacheStore>::Value, <Self as TryCacheStore>::Error>
fn try_gen( &self, key: impl Borrow<<Self as TryGenCacheStore>::Key>, args: <Self as TryGenCacheStore>::Args, ) -> Result<<Self as TryGenCacheStore>::Value, <Self as TryCacheStore>::Error>
Attempt to generate a new value without checking cache or adding the value to it.
Sourcefn try_get_or_gen(
&self,
key: impl Borrow<<Self as TryGenCacheStore>::Key>,
args: <Self as TryGenCacheStore>::Args,
) -> Result<<Self as TryGenCacheStore>::Value, <Self as TryCacheStore>::Error>
fn try_get_or_gen( &self, key: impl Borrow<<Self as TryGenCacheStore>::Key>, args: <Self as TryGenCacheStore>::Args, ) -> Result<<Self as TryGenCacheStore>::Value, <Self as TryCacheStore>::Error>
Attempt to get the value from cache or generate a new one without adding it.
Sourcefn try_get_or_new(
&mut self,
key: impl Borrow<<Self as TryGenCacheStore>::Key>,
args: <Self as TryGenCacheStore>::Args,
) -> Result<<Self as TryGenCacheStore>::Value, <Self as TryCacheStore>::Error>
fn try_get_or_new( &mut self, key: impl Borrow<<Self as TryGenCacheStore>::Key>, args: <Self as TryGenCacheStore>::Args, ) -> Result<<Self as TryGenCacheStore>::Value, <Self as TryCacheStore>::Error>
Attempt to get the value from cache or generate a new one attempting to add it.
Sourcefn try_gen_new(
&mut self,
key: impl Borrow<<Self as TryGenCacheStore>::Key>,
args: <Self as TryGenCacheStore>::Args,
) -> Result<<Self as TryGenCacheStore>::Value, <Self as TryCacheStore>::Error>
fn try_gen_new( &mut self, key: impl Borrow<<Self as TryGenCacheStore>::Key>, args: <Self as TryGenCacheStore>::Args, ) -> Result<<Self as TryGenCacheStore>::Value, <Self as TryCacheStore>::Error>
Attempt to generate a new value without checking cache and attempting to 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, T: GenCacheStore<Key = K, Value = V, Args = A>> TryGenCacheStore for T
impl<K, V, A, T: GenCacheStore<Key = K, Value = V, Args = A>> TryGenCacheStore for T
Implement TryGenCacheStore
Source§impl<K, V, E, A, FnErr: Into<E>, F: Fn(&K, A) -> Result<V, FnErr>, S: TryCacheStore<Key = K, Value = V, Error = E>> TryGenCacheStore for TryGenCacheStoreWrapper<K, V, E, A, FnErr, S, F>
impl<K, V, E, A, FnErr: Into<E>, F: Fn(&K, A) -> Result<V, FnErr>, S: TryCacheStore<Key = K, Value = V, Error = E>> TryGenCacheStore for TryGenCacheStoreWrapper<K, V, E, A, FnErr, S, F>
Functions with multiple stages will return the same type of error without any way to detect at what point it failed, and not undoing the changes. If you don’t like this you’ll have to manually follow the steps done by the function and handle the errors yourself.