ezcache::generative

Struct TryGenCacheStoreWrapper

Source
pub struct TryGenCacheStoreWrapper<K, V, E, A, FnErr: Into<E>, S: TryCacheStore<Key = K, Value = V, Error = E>, F: Fn(&K, A) -> Result<V, FnErr>> {
    pub store: S,
    pub try_generator: F,
    /* private fields */
}
Expand description

Infallible generative cache store wrapper around a CacheStore and a generator function.

Generics:

  • K: Type of the key used for cache indi.
  • V: Type of the value stored in the cache store.
  • E: Error type used for Results
  • A: Type of additional arguments of the generator function.
  • FnErr: Error type of the function.
  • S: CacheStore which this wraps around.
  • F: Fn<&K, A> with V return generator function.

Fields§

§store: S§try_generator: F

Implementations§

Source§

impl<K, V, E, A, FnErr: Into<E>, F: Fn(&K, A) -> Result<V, FnErr>, S: TryCacheStore<Key = K, Value = V, Error = E>> TryGenCacheStoreWrapper<K, V, E, A, FnErr, S, F>

Default implementation

Source

pub fn new(store: S, try_generator: F) -> Self

Make a new TryGenCacheStore from a fallible store and fallible generator function.

Trait Implementations§

Source§

impl<K, V, E, A, FnErr: Into<E>, S, F: Fn(&K, A) -> Result<V, FnErr>> TryCacheStore for TryGenCacheStoreWrapper<K, V, E, A, FnErr, S, F>
where S: TryCacheStore + TryCacheStore<Key = K, Value = V, Error = E>,

Source§

type Key = <S as TryCacheStore>::Key

Source§

type Value = <S as TryCacheStore>::Value

Source§

type Error = <S as TryCacheStore>::Error

Source§

fn try_get( &self, key: impl Borrow<Self::Key>, ) -> Result<Option<Self::Value>, Self::Error>

Attempts to return an option of the owned cache element if present
Source§

fn try_set( &mut self, key: impl Borrow<Self::Key>, value: impl Borrow<Self::Value>, ) -> Result<(), Self::Error>

Attempts to set a value given its key.
Source§

fn try_exists(&self, key: impl Borrow<Self::Key>) -> Result<bool, Self::Error>

Attempts to check if the cache key entry exists.
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>

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.

Source§

fn try_gen(&self, key: impl Borrow<K>, args: A) -> Result<V, E>

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

Source§

fn try_get_or_gen(&self, key: impl Borrow<K>, args: A) -> Result<V, E>

Attempt to get the value from cache or generate a new one without adding it.

Source§

fn try_get_or_new(&mut self, key: impl Borrow<K>, args: A) -> Result<V, E>

Attempt to get the value from cache or generate a new one attempting to add it.

Source§

fn try_gen_new(&mut self, key: impl Borrow<K>, args: A) -> Result<V, E>

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

Source§

type Key = K

Source§

type Value = V

Source§

type Error = E

Source§

type Args = A

Auto Trait Implementations§

§

impl<K, V, E, A, FnErr, S, F> Freeze for TryGenCacheStoreWrapper<K, V, E, A, FnErr, S, F>
where S: Freeze, F: Freeze,

§

impl<K, V, E, A, FnErr, S, F> RefUnwindSafe for TryGenCacheStoreWrapper<K, V, E, A, FnErr, S, F>

§

impl<K, V, E, A, FnErr, S, F> Send for TryGenCacheStoreWrapper<K, V, E, A, FnErr, S, F>
where S: Send, F: Send, K: Send, V: Send, E: Send, A: Send,

§

impl<K, V, E, A, FnErr, S, F> Sync for TryGenCacheStoreWrapper<K, V, E, A, FnErr, S, F>
where S: Sync, F: Sync, K: Sync, V: Sync, E: Sync, A: Sync,

§

impl<K, V, E, A, FnErr, S, F> Unpin for TryGenCacheStoreWrapper<K, V, E, A, FnErr, S, F>
where S: Unpin, F: Unpin, K: Unpin, V: Unpin, E: Unpin, A: Unpin,

§

impl<K, V, E, A, FnErr, S, F> UnwindSafe for TryGenCacheStoreWrapper<K, V, E, A, FnErr, S, F>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.