pub struct MemoryStore<K, V> { /* private fields */ }
Expand description
Simple thread unsafe in memory cache store.
Implementations§
Source§impl<K, V> MemoryStore<K, V>
impl<K, V> MemoryStore<K, V>
pub fn new() -> Self
pub fn from_hashmap(hashmap: HashMap<K, V>) -> Self
Trait Implementations§
Source§impl<K: Hash + Eq + Sized + Clone, V: Clone> CacheStore for MemoryStore<K, V>
impl<K: Hash + Eq + Sized + Clone, V: Clone> CacheStore for MemoryStore<K, V>
Auto Trait Implementations§
impl<K, V> Freeze for MemoryStore<K, V>
impl<K, V> RefUnwindSafe for MemoryStore<K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> Send for MemoryStore<K, V>
impl<K, V> Sync for MemoryStore<K, V>
impl<K, V> Unpin for MemoryStore<K, V>
impl<K, V> UnwindSafe for MemoryStore<K, V>where
K: UnwindSafe,
V: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> TryCacheStore for Twhere
T: CacheStore,
impl<T> TryCacheStore for Twhere
T: CacheStore,
type Key = <T as CacheStore>::Key
type Value = <T as CacheStore>::Value
type Error = Infallible
Source§fn try_get(
&self,
key: impl Borrow<<T as TryCacheStore>::Key>,
) -> Result<Option<<T as TryCacheStore>::Value>, <T as TryCacheStore>::Error>
fn try_get( &self, key: impl Borrow<<T as TryCacheStore>::Key>, ) -> Result<Option<<T as TryCacheStore>::Value>, <T as TryCacheStore>::Error>
Attempts to return an option of the owned cache element if present
Source§fn try_set(
&mut self,
key: impl Borrow<<T as TryCacheStore>::Key>,
value: impl Borrow<<T as TryCacheStore>::Value>,
) -> Result<(), <T as TryCacheStore>::Error>
fn try_set( &mut self, key: impl Borrow<<T as TryCacheStore>::Key>, value: impl Borrow<<T as TryCacheStore>::Value>, ) -> Result<(), <T as TryCacheStore>::Error>
Attempts to set a value given its key.
Source§fn try_exists(
&self,
key: impl Borrow<<T as TryCacheStore>::Key>,
) -> Result<bool, <T as TryCacheStore>::Error>
fn try_exists( &self, key: impl Borrow<<T as TryCacheStore>::Key>, ) -> Result<bool, <T as TryCacheStore>::Error>
Attempts to check if the cache key entry exists.