ezcache

Trait CacheStore

Source
pub trait CacheStore {
    type Key;
    type Value;

    // Required methods
    fn get(&self, key: impl Borrow<Self::Key>) -> Option<Self::Value>;
    fn set(
        &mut self,
        key: impl Borrow<Self::Key>,
        value: impl Borrow<Self::Value>,
    );

    // Provided method
    fn exists(&self, key: impl Borrow<Self::Key>) -> bool { ... }
}
Expand description

Trait for a infallible cache store

Required Associated Types§

Required Methods§

Source

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

Returns an option of the owned cache element if present

Source

fn set(&mut self, key: impl Borrow<Self::Key>, value: impl Borrow<Self::Value>)

Sets a value given its key

Provided Methods§

Source

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

Checks if the cache entry exists

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, S, F: Fn(&K, A) -> V> CacheStore for GenCacheStoreWrapper<K, V, A, S, F>
where S: CacheStore + CacheStore<Key = K, Value = V>,

Source§

impl<K: Hash + Eq + Sized + Clone, V: Clone> CacheStore for MemoryStore<K, V>

Source§

type Key = K

Source§

type Value = V